Created
January 13, 2016 07:42
-
-
Save justin3737/f3725df922276bfb929b to your computer and use it in GitHub Desktop.
Learning ES6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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