Consider the following code:
eval(".....;a=5;b=10;");
eval("a+b");
If in case here the 1st eval runs for long time, will my next eval return an error mentioning as a and b are undefined, as the a and b values are initialised at the end of 1st eval. Will the eval method run synchronously or asynchronously