File size: 123 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
let x = 1;
x = 2;
x = 3;
console.log(x);
x = 4;
x = 5;
x += 6;
x += 7;
x += 8;
x += 9;

export { x };

export const y = x;