'eval()' Syntax, Parameters and Note : eval « Javascript Methods « JavaScript Reference

'eval()' Syntax, Parameters and Note

Note:

Evaluates the string as if it were JavaScript code.
    
Syntax:
    
eval(param1)


Parameters:
    param1   Required; the string to be evaluated.

    

      
      








Related examples in the same category

1.'eval()' Example