Use new Function () for syntax check
The eval () method cannot be used in disorder. Using the eval () method when not appropriate may cause problems in the entire program;
And new Function () is not that big a problem. Although the new Function () works directly in the global scope under any circumstances, if it only performs syntax checks, it will not generate unexpected results due to scope issues, as long as you do not directly call the new function constructed through it.
Add "0," Before the parameter accepted by eval ,"
In fact, this is because there is a bug in IE. For some reason, if you want to dynamically construct a function in IE by calling eval.
For example:
Eval ('(function () {/* code here */})');
The returned result in IE will be undefined, while other browsers will return the reference of the newly constructed function correctly.
The simplest and most effective solution is to add "0," to the front to be compatible with all mainstream browsers.
For example:
Eval ('0, function () {/* code here */}');
Note: In the Chakra engine of IE9, this problem has been solved.
Use the concat method of the array object to generate a new array
Convert a single object parameter to an array containing only one element before processing. You can use the []. concat (o) format.
For example:Copy codeThe Code is as follows: var arr1 = [1, 2];
Var arr2 = [3, 4];
Var arr3 = arr1.concat (arr2 );
Alert (arr3.length );
Another method is: if (! (O instanceof Array) o = [o];
// It is less rigorous than isArray in ECMAScript 5.
Reply:
1. eval cannot be used in disorder;
2. in IE eval, my solution is to execute return in the function body;
3. Array. prototype. concat. apply ([1, 2, 3], [4, 5, 6]);