Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 295 Bytes

js.md

File metadata and controls

15 lines (11 loc) · 295 Bytes

Examples of lowercase-able JavaScript code

Exponents indicator 12.9.3

The exponent indicator can be either E or e.

const trillion = 10E12
const trillion = 10e12

Implementations

  • Terser