Thursday, August 8, 2013

JavaScript - Determines whether a value is an illegal number

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.

Syntax

isNaN(value)

Example

Example

Check whether a number is an illegal number:
<script>

document.write(isNaN(123)+ "<br>");
document.write(isNaN(-1.23)+ "<br>");
document.write(isNaN(5-2)+ "<br>");
document.write(isNaN(0)+ "<br>");
document.write(isNaN("Hello")+ "<br>");
document.write(isNaN("2005/12/12")+ "<br>");

</script>
The output of the code above will be:
false
false
false
false
true
true

Reference:
http://www.w3schools.com/jsref/jsref_isnan.asp

Related Posts:

  • So sánh thị trường Forex & thị trường Chứng khoánTrong giao dịch Forex, có hàng chục cặp tiền tệ được giao dịch, nhưng phần lớn đều giao dịch trên những cặp tiền tệ chính trong đó có 4 cặp chiếm phần lớn khối lượng giao dịch là EURUSD, USDJPY, GBPUSD và&… Read More
  • Austrian Brokershttps://comparebrokers.co/compare/austrian-brokers/ https://www.fma.gv.at/ https://www.wienerborse.at/… Read More
  • Forex - Main Points Forex là viết tắt của Foreign Exchange, có nghĩa là Trao đổi tiền tệ.  Thị trường Forex hay còn gọi là thị trường ngoại hối, là nơi mà các nhà giao dịch, quỹ đầu tư, ngân hàng và các tổ chức kinh doanh … Read More
  • Forex - Định hướngĐối với việc đánh giá một sàn môi giới, cần có những tiêu chí cụ thể, bao gồm: Mức độ uy tín Chi phí giao dịch Gửi tiền và rút tiền Nền tảng giao dịch Dịch vụ chăm sóc và hỗ trợ khách hàng Nếu bạn là nhà giao dịch Forex… Read More
  • Utility Onlinehttps://fbdownloader.net http://downvids.net/ … Read More

0 comments:

Post a Comment