ในการแปลงทศนิยมเป็นไบนารีใน JavaScript คุณสามารถลองเรียกใช้โค้ดต่อไปนี้
ตัวอย่าง
<!DOCTYPE html>
<html>
<body>
<script>
document.write("Decimal to Binary<br>");
document.write((-7 >>> 0).toString(2));
</script>
</body>
</html>