1.

A javaScript code has the following three variables and values. x = “Script”; y = “3”; z = “2”;Then match the following table.               A         B         x.length()      false        isNaN(x)       5        isNaN(y)       6        y + z    true      32

Answer»
      A    B
  x.length()  6
  isNaN(x)  true
  isNaN(y)  false
  y + z  32


Discussion

No Comment Found