UNPKG

100 BJavaScriptView Raw
1"use strict";
2
3const x = 3;
4x++;
5--x;
6x = 4;
7x *= 2;
8x /= 2;
9
10if (true) {
11 let x = 3;
12 x++;
13}