자바스크립트 타갈로그어 - Math.trunc

Disclaimer: This is a Blog i made with the initial intention of reinforcing my knowledge in JS. I just thought sharing my blogs might be helpful for someone since they are written in tagalog/taglish. Incase of Misinformation I won't be responsible for it and you can comment on the blog to address the mistake or email me. I'm always trying my best to be as accurate as possible. take a look at other resources just to be sure.
Javascript에 Math.trunc를 추가하시겠습니까?
수학 함수 siya na basta aalisin niyalang yung mga 소수점 이하 자릿수는 숫자입니다. (또한 i ta-try ni js na i 변환 ang mga binigay na 값은 힌디어 숫자 데이터 유형 yung binigay인 경우 숫자로 변환)

console.log( Math.trunc(1.2) ) // 1

console.log( Math.trunc('7.8') ) // 7

console.log( Math.trunc(0.1) ) // 0

console.log( Math.trunc(1.0002) ) // 1

console.log( Math.trunc(-4.004) ) // -4

console.log( Math.ceil('-2.001') ) // 2



NaN kapag nag tinry mo mag pass ng 힌디어 숫자 또는 어떤 na hindi pwede maconvert as a number

console.log( Math.trunc() ) // NaN
console.log( Math.trunc({}) ) // NaN


baka 지나치게 단순화되고 부정확한 정보 nasulat ko 그래서 여기에 더 자세한 문서가 있습니다(영어).
MDC Documentation - Math.trunc

더 많은 tagalog Javascript 학습 리소스:
https://javascript-in-tagalog.netlify.app

좋은 웹페이지 즐겨찾기