JSFiddle - React, Tailwind, and code Playground

by Alexander

JavaScript

"use strict";

console.clear();

if (0b111110111 === 0o767) console.log(1); //parseInt("111110111", 2)
if (0o767 === 503) console.log(2); //parseInt("767", 8)
//if (503 === 0767) console.log(3);