Question:Which of the following functions in JavaScript can be used to check whether the input data from a prompt window is number or not
A toString() B Math.floor() C perseInt() D perseFloat()
+ AnswerD
+ ExplanationperseFloat() will consider all numbers including integers but perseInt() will only consider integer.
+ Report