Để 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>