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

จะรับความยาวของตัวเลขใน JavaScript ได้อย่างไร


ใช้เมธอด toString() เพื่อแปลง Number to string จากนั้นวิธี length() จะให้ความยาวกับคุณ

ตัวอย่าง

คุณสามารถลองใช้รหัสต่อไปนี้เพื่อเรียนรู้วิธีรับความยาวของตัวเลข -

การสาธิตสด

<!DOCTYPE html>
<html>
   <body>
      <script>
         var num1 = 344;
         var num2 = 149856;

         document.write("Length of number "+num1+" = "+ num1.toString().length);
         document.write("<br>Length of number "+num2+" = "+ num2.toString().length);
      </script>
   </body>
</html>

ผลลัพธ์

Length of number 344 = 3
Length of number 149856 = 6