Skip to content

Instantly share code, notes, and snippets.

@think49
think49 / test006.js
Created March 11, 2012 03:15 — forked from os0x/test006.js
// strict check
//
function strict () {
'use strict';
var isStrict = (function () { return typeof this === 'undefined'; }());
console.log(isStrict);
}
function nonStrict () {