File size: 168 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
function a() {}
var b = function () {};
let c = 123;
const d = "hello";
class e {}

const aa = a;
const bb = b;
const cc = c;
const dd = d;
const ee = e;
const ff = f;