C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
8
Reply
What is NaN Function in Javascript?
Priti Kumari
12y
7.1k
2
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
NaN refers to Not a Number , which is used for identifying wether a variable is having a number or not ?
Palle Technologies
11y
1
Check whether a number is an illegal number or not... Example: 1) var A1 = isNaN(523) .....output:false 2) var B1 = isNaN("12").....output :true
prince singh
11y
1
Not a number ,which used in client side to check input is number or not
Roymon TP
11y
0
NaN is Not a Number , which is used for identifying that a variable is a number or not ? This function returns true if the value is NaN, and false if not.
Akhil Garg
11y
0
most of the time NaN is used whether the given value is number or not
Vithal Wadje
11y
0
that is 'Not a Number' it is use to check the given value is number or not
rakesh chaudhari
11y
0
It simply means the input you enter NaN(Not a Number)
Salman Mushtaq
11y
0
The isNaN() function determines whether a value is an illegal number (Not-a-Number). This function returns true if the value is NaN, and false if not. E.g.:- var a = isNaN(123) Out:-false and var e = isNaN("Hello") Out:- true
Mahesh Alle
11y
0
Message