var pi=3.14; // 使用小数点 var x=34; // 不使用小数点
var y=123e5; // 12300000 var z=123e-5; // 0.00123
52 bits (0 - 51) 11 bits (50 - 62) 1 bit (63)
var x = 0.2+0.1; // result will be 0.30000000000000004
var y = 0377; var z = 0xFF;
var myNumber=128; myNumber.toString(16); // returns 80 myNumber.toString(8); // returns 200 myNumber.toString(2); // returns 10000000
myNumber=2;
while (myNumber!=Infinity)
{
myNumber=myNumber*myNumber; // Calculate until Infinity
}
var x = 2/0; var y = -2/0;
var x = 1000 / "Apple"; isNaN(x); // returns true var y = 100 / "1000"; isNaN(y); // returns false
var x = 1000 / 0; isNaN(x); // returns false
var x = 123; var y = new Number(123); typeof(x) // returns Number typeof(y) // returns Object
var x = 123; var y = new Number(123); (x === y) // is false because x is a number and y is an object.
var carname="Volvo XC60"; var carname='Volvo XC60';
var character=carname[7];
var answer="It's alright"; var answer="He is called 'Johnny'"; var answer='He is called "Johnny"';
var answer='It's alright'; var answer="He is called "Johnny"";
var txt="Hello World!"; document.write(txt.length); var txt="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; document.write(txt.length);
var str="Hello world, welcome to the universe.";
var n=str.indexOf("welcome");
var str="Hello world!";
document.write(str.match("world") + "<br>");
document.write(str.match("World") + "<br>");
document.write(str.match("world!"));
str="Please visit Microsoft!"
var n=str.replace("Microsoft","w3cschool");
var txt="Hello World!"; // String var txt1=txt.toUpperCase(); // txt1 is txt converted to upper var txt2=txt.toLowerCase(); // txt2 is txt converted to lower
txt="a,b,c,d,e" // String
txt.split(","); // Split on commas
txt.split(" "); // Split on spaces
txt.split("|"); // Split on pipe
var txt="We are the so-called "Vikings" from the north."; document.write(txt);
var txt="We are the so-called \"Vikings\" from the north."; document.write(txt);
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有