时间:2023-02-26 11:18编辑:九州下载来源:www.wzjsgs.com
1、使用“parseInt(小数值)”语句。
document.write(parseInt("10")+" "); document.write(parseInt("10.33")+" "); document.write(parseInt("344566")+" "); document.write(parseInt("60")+" "); document.write(parseInt("40years")+" "); document.write(parseInt("Hewas40")+" "); document.write(" "); document.write(parseInt("10",10)+" "); document.write(parseInt("010")+" "); document.write(parseInt("10",8)+" "); document.write(parseInt("0x10")+" "); document.write(parseInt("10",16)+" ");
2、使用“~~小数值”语句。
vardecimal=4; varinteger=~~decimal;//4=~~4.123 console.log(integer);
3、使用“Math.floor(小数值)”语句。
console.log(Math.floor(2.5));//2 console.log(Math.floor(-2.5));//-3
4、使用“Math.ceil(小数值)”语句。
console.log(Math.ceil(2.5));//3 console.log(Math.ceil(-2.5));//-2
5、使用“Math.round(小数值)”语句。
console.log(Math.round(2.5));//3 console.log(Math.round(-2.5));//-2 console.log(Math.round(-2.6));//-3
以上就是js将小数转为整数的方法,希望对大家有所帮助。更多Javascript学习指路:Javascript
专业数据统计,95%的用户会因为[不安全]提示而放弃访问,从而给网站造成用户流失。问题就出在不安全的HTTP 明文传输协议上。2018年2月初,谷歌旗下Chrome浏览器宣布“封杀”HTTP协议的网站,并将这些网站标示为“Not Secure”(不安全)。
2023-03-03 21:141、do-while语句是一种后测试循环语句,即循环体中的代码执行后才会对退出条件进行求值。2、循环体内的代码至少执行一次。do-while的语法如下:do{ statement }while(expression)下面是一个例子:letxhs=0 do{ xhs+=2 }while(xhs<10)在上面的
2023-02-26 12:191、while语句是一种先测试循环语句,即先检测退出条件,再执行循环体内的代码。2、while循环体内的代码有可能不会执行。下面是 while 循环的语法:while(expression){ statement }实例leti=0 while(i<10){ i+=2 }在这个例子中,变量 xhs 从 0 开
2023-02-26 12:181、for语句也是先测试语句,只不过增加了进入循环之前的初始化代码.以及循环执行后要执行的表达式(loop-expression),语法如下:for(initialization;expression;loop-expression){ statement }下面是一个用例:letxhsLength=10 for(letxhs=0;xh
2023-02-26 12:17说明1、for-of语句是一种严格的迭代语句,用于遍历可迭代对象的元素。2、for-of循环将按照可迭代对象的next()方法产生值的顺序迭代元素。关于可迭代对象,请参考ES6系列的Iterator。如果尝试迭代的变量不支持迭代,for-of语句就会出错。语法:只
2023-02-26 12:16说明1、switch语句可用于所有的数据类型(在许多语言中,它只能用于数值),因此可以使用字符串甚至对象。2、条件值不一定是常量,或者是一个变量或者一个表达式。实例switch('helloxhsRookies'){ case'hello'+'xhsRookies&#
2023-02-26 12:15发布日期:2022-10-29人气:641
发布日期:2022-10-10人气:555
发布日期:2022-09-29人气:335
发布日期:2022-09-04人气:311
发布日期:2023-01-16人气:226
发布日期:2022-10-02人气:149
发布日期:2022-11-07人气:145