Guest User

Assign Properties v.2

a guest
Sep 22nd, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function createObj([firstKey, firstValue, secondKey, secondValue, thirdKey, thirdValue]) {
  2. return {
  3. [firstKey]: firstValue,
  4. [secondKey]: secondValue,
  5. [thirdKey]: thirdValue
  6. };
  7. }
Advertisement
Add Comment
Please, Sign In to add comment