Javascript ES6Other function features in ES6On this pageOther function features in ES6StackEnumsconst directions = { UP : Symbol( 'UP' ), DOWN : Symbol( 'DOWN' ), LEFT : Symbol( 'LEFT' ), RIGHT: Symbol( 'RIGHT' )};console.log(directions);/**{ UP: Symbol(UP), DOWN: Symbol(DOWN), LEFT: Symbol(LEFT), RIGHT: Symbol(RIGHT) } */