fork download
  1. // your code goes here
  2.  
  3. // AS-IS
  4. var a1 = 1;
  5. var b1 = 2;
  6. var rst1 = a1 + b1;
  7. var str1 = a1 + ' 더하기 ' + b1 + '은 \'' + rst1 + '\'' + ' 이다.';
  8. console.log(str1);
  9.  
  10. // TO-DO
  11. const a2 = 1;
  12. const b2 = 2;
  13. const rst2 = a2 + b2;
  14. const str2 = `${a2} 더하기 ${b2}'${rst2}' 이다.`;
  15. console.log(str2);
Success #stdin #stdout 0.02s 16916KB
stdin
Standard input is empty
stdout
1 더하기 2은 '3' 이다.
1 더하기 2는 '3' 이다.