JavaScript의 엄격 모드에 대한 모든 것
6251 단어 tutorialwebdevjavascript
엄격 모드 란 무엇입니까?
엄격 모드의 이점은 무엇입니까?
엄격 모드를 사용하는 방법?
"use strict"
또는 'use strict'
를 사용하십시오. function myFunction() {
"use strict"; // This enables strict mode only inside this function
}
"use strict"; // This enables strict mode for this entire script
// Rest of the code here ...
엄격 모드에서 오류로 이어지는 일반적인 실수
변수나 객체를 선언하기 전에 사용하기
// In non strict mode
myVariable = 15;
console.log(myVariable); // This prints 15
"use strict"; // In strict mode
myVariable = 15;
console.log(myVariable); // This gives a ReferenceError
변수 이름 지정에 예약어 사용
// In non strict mode
var let = 15; // let is a reserved keyword in JavaScript
console.log(let); // This prints 15
"use strict"; // In strict mode
var let = 15;
console.log(let); // This gives a SyntaxError
함수의 여러 매개변수에 동일한 이름 사용
// In non strict mode
function myFunction(param1, param1) {
console.log(param1, param1); // This gives a weird output of peter peter
}
myFunction("bob", "peter");
"use strict"; // In strict mode
function myFunction(param1, param1) {
console.log(param1, param1); // This gives a SyntaxError
}
myFunction("bob", "peter");
Strict 모드는 훌륭합니다. 기본적으로 사용하지 않는 이유는 무엇입니까?
결론
Reference
이 문제에 관하여(JavaScript의 엄격 모드에 대한 모든 것), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mvganeshkumar06/everything-about-strict-mode-in-javascript-1bo7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)