Known Issues
Validation
Example:
var arr = [a,b,c,d];
arr.forEach(function(x) {alert(x);});
Example of unsupported code:
var arr = [a,b,c,d];
arr.forEach(x => {alert(x);});
Example:
var a=1;
var b=2;
Example of unsupported code:
let a=1;
const b=2;
Last updated
Was this helpful?