Object.entries and Object.values
check the entries and values of a Map using ES2017
We'll cover the following...
Object.keys
work in the following way:
Press + to interact
let account = {first: 'Zsolt',last: 'Nagy',email: 'info@zsoltnagy.eu'};console.log(Object.keys( account ));
In ES2017, ...