Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const fun = function(options = { prop: 'default'}) { console.log(options.prop)}
  2.  
  3.  
  4. fun({a: 'x', prop: 'hello'}) ... // log: 'hello'
  5.  
  6. fun({a: 'x'}) ... // log: 'default'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement