1. 程式人生 > >js中嚴格模式

js中嚴格模式

gpo color UNC div 定義 pre func 文檔 post

我們在js中可以使用"use strict";定義了我們在接下來的文檔輸寫中 將按照嚴格模式進行;

function(){

"use strict‘;

var a=10;// 在這裏我們的嚴格模式只在函數範圍內生效;也叫局部嚴格模式;

};
"use strict"; //定義了我們文檔全部的嚴格模式;

js中嚴格模式