Open Semnodime opened 1 year ago
var foo; foo = [42]; console.log(foo[0]);
should be handled identically with
var foo = [42]; console.log(foo[0]);
and be deobfuscated to
console.log(42);
should be handled identically with
and be deobfuscated to