Variable: js-base-mode-hook
js-base-mode-hook is a variable defined in js.el.gz.
Value
nil
Documentation
Hook run after entering JavaScript mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
;;; Main Function
;;;###autoload
(define-derived-mode js-base-mode prog-mode "JavaScript"
"Generic major mode for editing JavaScript.
This mode is intended to be inherited by concrete major modes.
Currently there are `js-mode' and `js-ts-mode'."
:group 'js
nil)