Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. python:
  2.  
  3. >>> def test(a=False, b=False):
  4. ... print a, b
  5. ...
  6. >>> test(b=True)
  7. False True
  8.  
  9.  
  10. js:
  11.  
  12. function test(a=false, b=false){
  13. console.log(a);
  14. console.log(b);
  15. }
  16. test(b=true)
  17. true
  18. false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement