constant_.constant(value)
Creates a function that returns the same value that is used as the argument of _.constant.
var stooge = {name: 'moe'}; stooge === _.constant(stooge)(); => true
constant_.constant(value)
Creates a function that returns the same value that is used as the argument of _.constant.
var stooge = {name: 'moe'}; stooge === _.constant(stooge)(); => true
Please login to continue.