There are many times when I am coding in Python, that I find myself wanting to quickly access the documentation for a function. In the iPython console, I can easily do this by entering dir??
which retrieves the documentation for the dir
function. Is there a comparable method in Javascript? How can I quickly view function documentation whether in the terminal window or within the Chrome console?