Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ปัดเศษตัวเลขลงเป็นกำลังใกล้ที่สุดของ 10 JavaScript


เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่ใช้ตัวเลข ฟังก์ชันควรคืนค่ายกกำลัง 10 ซึ่งใกล้เคียงที่สุดกับหมายเลขอินพุต

ตัวอย่างเช่น −

f(1) = 1
f(5) = 1
f(15) = 10
f(43) = 10
f(456) = 100
f(999) = 100

ตัวอย่าง

const num = 2355;
const num1 = 346;
const num2 = 678;
const nearestPowerOfTen = (num) => {
   let count = 0;
   while(num > 1){
      count ++; num/= 10;
   };
   return Math.pow(10, count-1) * (Math.round(num) ? 10: 1);
}
console.log(nearestPowerOfTen(num));
console.log(nearestPowerOfTen(num1));
console.log(nearestPowerOfTen(num2));

ผลลัพธ์

และผลลัพธ์ในคอนโซลจะเป็น −

1000
100
1000