Files
coffeescript/test/fixtures/execution/keyword_operators.js
2009-12-24 11:50:44 -08:00

10 lines
226 B
JavaScript

(function(){
var a = 5;
var atype = typeof a;
var b = "hello";
var btype = typeof b;
var Klass = function() {
};
var k = new Klass();
print(atype === 'number' && btype === 'string' && k instanceof Klass);
})();