Skip to content

Instantly share code, notes, and snippets.

@kmohrf
Last active June 8, 2016 14:43
Show Gist options
  • Save kmohrf/4675e90714c375fcdc628ad309700ca4 to your computer and use it in GitHub Desktop.
Save kmohrf/4675e90714c375fcdc628ad309700ca4 to your computer and use it in GitHub Desktop.
default argument implementations with referenceable datatypes in .js and .py
const create_object = (obj = {}) => obj
console.log(create_object() === create_object()) // false
def create_object(obj = {}):
return obj
print(create_object() == create_object()) # True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment