Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 199 Bytes

ShorthandPropertyAssignment.md

File metadata and controls

22 lines (19 loc) · 199 Bytes

ShorthandPropertyAssignment

ShorthandPropertyAssignment

let b = 2;
let c = 1;
const a = {
    b,
    c
};
$b = 2;
$c = 1;
$a = array(
    "b" => $b,
    "c" => $c
);