Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 185 Bytes

19__Binary_and_Octal_Literals.md

File metadata and controls

10 lines (8 loc) · 185 Bytes
title
Binary and Octal Literals

Two new numeric literal forms are added for binary (b) and octal (o).

0b111110111 === 503 // true
0o767 === 503 // true