Why is this code valid: "(1, eval) ('this')"

Why is the following code valid Javascript code?

var global = (1,eval)('this'); alert(global); 
+7
source share
1 answer

This is because the operator

+10
source

All Articles