這篇文章主要介紹“js怎么將小數(shù)轉(zhuǎn)為整數(shù)”,在日常操作中,相信很多人在js怎么將小數(shù)轉(zhuǎn)為整數(shù)問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”js怎么將小數(shù)轉(zhuǎn)為整數(shù)”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、外貿(mào)營銷網(wǎng)站建設(shè)的關(guān)注點(diǎn)不是能為您做些什么網(wǎng)站,而是怎么做網(wǎng)站,有沒有做好網(wǎng)站,給成都創(chuàng)新互聯(lián)公司一個展示的機(jī)會來證明自己,這并不會花費(fèi)您太多時(shí)間,或許會給您帶來新的靈感和驚喜。面向用戶友好,注重用戶體驗(yàn),一切以用戶為中心。
1、使用“parseInt(小數(shù)值)”語句。
document.write(parseInt("10") + " "); document.write(parseInt("10.33") + " "); document.write(parseInt("34 45 66") + " "); document.write(parseInt(" 60 ") + " "); document.write(parseInt("40 years") + " "); document.write(parseInt("He was 40") + " "); 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、使用“~~小數(shù)值”語句。
var decimal=4; var integer = ~~decimal; // 4 = ~~4.123 console.log(integer);
3、使用“Math.floor(小數(shù)值)”語句。
console.log(Math.floor(2.5)); //2 console.log(Math.floor(-2.5)); //-3
4、使用“Math.ceil(小數(shù)值)”語句。
console.log(Math.ceil(2.5)); //3 console.log(Math.ceil(-2.5)); //-2
5、使用“Math.round(小數(shù)值)”語句。
console.log(Math.round(2.5)); //3 console.log(Math.round(-2.5)); //-2 console.log(Math.round(-2.6)); //-3
到此,關(guān)于“js怎么將小數(shù)轉(zhuǎn)為整數(shù)”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!