1 2The following language features are not covered: 3 4Operators: 5 6>>>= 7^= 8%= 9in 10prefix -- 11>>= 12delete 13void 14instanceof 15 16 17statements: 18 19with 20switch 21 22 23core language feaures: 24 25getters / setters 26closure data access 27heavy use of first-class functions 28 29Builtins: 30 31String.search 32 33Number.toFixed 34Number.toExponential 35Number.toPrecision 36 37RegExp.exec 38RegExp custom properties 39 40Function.apply 41Function.call 42 43parseInt 44parseFloat 45escape 46unescape 47decodeURI 48encodeURI 49 50 51Date.toDateString 52Date.toTimeString 53Date.getUTCFullYear 54Date.getUTCMonth 55Date.getUTCDate 56Date.getUTCDay 57Date.getUTCSeconds 58Date.getMilliseconds 59Date.getUTCMilliseconds 60Date.set* 61 62 63Math.E 64Math.LN2 65Math.LN10 66Math.LOG2E 67Math.LOG10E 68Math.SQRT1_2 69Math.SQRT2 70Math.acos 71Math.asin 72Math.atan 73Math.atan2 74Math.exp 75Math.min 76Math.tan 77 78Object.hasOwnProperty 79Object.propertyIsEnumerable 80Object.isPrototypeOf 81 82 83Array.concat 84Array.join 85Array.pop 86Array.push 87Array.reverse 88Array.shift 89Array.slice 90Array.sort 91Array.splice 92Array.unshift 93Array.every 94Array.forEach 95Array.some 96Array.indexOf 97Array.lastIndexOf 98Array.filter 99Array.map 100