자바스크립트를 처음 배우는 건 아니지만...
코딩을 할 때 좀 막히는 부분이 생각보다 많은 것 같아서
리마인드 개념으로 하고자 신청하게 되었다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
alert('Hello World!');
</script>
</head>
<body>
</body>
</html>
결과
"안녕하세요"
-> '안녕하세요'console.log("안녕하세요")
-> 안녕하세요
undefined"안녕하세요
-> Uncaught SyntaxError: Invalid or unexpected token