Last active
August 29, 2015 14:16
-
-
Save okeydoke/a2ac8b5ebfc757e3dd14 to your computer and use it in GitHub Desktop.
JS Object properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getAllMethods(object) { | |
return Object.getOwnPropertyNames(object).filter(function(property) { | |
return typeof object[property] == 'function'; | |
}); | |
} | |
console.log(getAllMethods(String).sort()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment