Skip to content

Instantly share code, notes, and snippets.

@justin3737
Created January 13, 2016 07:42
Show Gist options
  • Save justin3737/f3725df922276bfb929b to your computer and use it in GitHub Desktop.
Save justin3737/f3725df922276bfb929b to your computer and use it in GitHub Desktop.
Learning ES6
let languages = {
'zh-TW':'繁中',
'zh-CN':'簡中',
'en-US':'英文'
};
console.log(Object.keys(languages));
//["zh-TW","zh-CN","en-US"]
console.log(Object.values(languages));
//["繁中","簡中","英文"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment