Run ❯
Get your own Node server
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
const uniqueKey: symbol = Symbol('description'); const obj = { [uniqueKey]: 'This is a unique property' }; console.log(obj[uniqueKey]); // "This is a unique property"
This is a unique property