JavaScript Tutorial/Global/NaN — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:24, 26 мая 2010
Global.NaN
The NaN object represents an object that is not equal to any number, including itself.
NaN stands for Not a Number.
<html>
<body>
<script lanuguage="JavaScript">
<!--
if ("a" != NaN){
document.write("This is not a number");
}else{
document.write("This is a number");
}
-->
</script>
</body>
</html>