3-16.Strict Mode
2023. 3. 30. 10:26ㆍJavascript/자바스크립트 제대로 배워볼래?
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
</head>
<body>
<script>
// strict mode
// 엄격하게 자바스크립트 테스트
// "use strict"
// x = 3.14;
// console.log(x);
function myFunction() {
"use strict"
y = 2;
}
myFunction();
</script>
</body>
</html>
'Javascript > 자바스크립트 제대로 배워볼래?' 카테고리의 다른 글
4-01.HTML Element 컨트롤 (0) | 2023.03.30 |
---|---|
3-17.정규식(RegExp) (0) | 2023.03.30 |
3-15.Error - try_catch_finally (0) | 2023.03.30 |
3-14.클래스(Class) (0) | 2023.03.30 |
3-13.모듈(Module) (0) | 2023.03.30 |