Skip to content

Instantly share code, notes, and snippets.

View fanghm's full-sized avatar

Frank Fang fanghm

View GitHub Profile
**Destructuring assignment**
```
var parameters = {controlProtocol: 'CWA', retUnitMgmt: true};
const {controlProtocol, retUnitMgmt} = parameters;
console.log(`controlProtocol: ${controlProtocol}, retUnitMgmt: ${retUnitMgmt}`);
```