Created
April 26, 2016 21:31
-
-
Save easierbycode/1b6e640e8a1f1bb18f64dccac0180869 to your computer and use it in GitHub Desktop.
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
| 'use strict'; | |
| let salary = ['32000', '50000']; | |
| [low, average, high = '90000'] = salary; | |
| console.log( high ) | |
| // 90000 | |
| function reviewSalary([low, average], high = '90000') { | |
| console.log( average ); | |
| } | |
| reviewSalary(['32000', '50000']) | |
| // 50000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment