InterviewSolution
| 1. |
What Is Join() And Isnan() Functions In Javascript? |
|
Answer» The is join() function used to join the separator in the array. Syntax: myArray.join(mySeparator); The example as given below. var alfabets = ["A", "B", "C", "D"]; The isNaN() function is used to CHECK the VALUE is not-a-number. The example as given below var var1 = isNaN(-1.23);//The output is false. The is join() function used to join the separator in the array. Syntax: myArray.join(mySeparator); The example as given below. var alfabets = ["A", "B", "C", "D"]; The isNaN() function is used to check the value is not-a-number. The example as given below var var1 = isNaN(-1.23);//The output is false. |
|