Để chuyển đổi Thập phân thành Nhị phân trong JavaScript, bạn có thể thử chạy đoạn mã sau.
Ví dụ
<!DOCTYPE html> <html> <body> <script> document.write("Decimal to Binary<br>"); document.write((-7 >>> 0).toString(2)); </script> </body> </html>
Để chuyển đổi Thập phân thành Nhị phân trong JavaScript, bạn có thể thử chạy đoạn mã sau.
<!DOCTYPE html> <html> <body> <script> document.write("Decimal to Binary<br>"); document.write((-7 >>> 0).toString(2)); </script> </body> </html>