コードをより簡潔にする方法を探していたので、(その識別子を入力するたびに) 識別子をその識別子の省略形に自動的に置き換える方法を見つけたいと考えています。これは、一部のワード プロセッサに見られる「自動修正」機能に似ています。
例:
var con = console.log;
//from this point on, whenever I type "console.log" as a variable name, I want the text to be automatically replaced with "con"