JavaScript Создание символа

// creating symbol
const x = Symbol()

typeof x; // symbol
SAMER SAEID