Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 241 Bytes

reference.md

File metadata and controls

24 lines (19 loc) · 241 Bytes

reference

reference

let a: number[] = [];
let b = a;

let c: {aaa?: string} = {};
let d = c;

let e = function () {};
let f = e;
$a = array();
$b = &$a;
$c = array();
$d = &$c;
$e = function () { };
$f = $e;