Predefined Live Templates for JavaScript
This topic lists all predefined live templates for JavaScript in ReSharper 2021.1. For more information about live templates, see Create Source Code Using Live Templates
| Template | Details |
|---|---|
ctx | Current file context Scope everywhere Body $CTX$ Parameters
|
nguid | Insert new GUID Scope everywhere Body $GUID$ Parameters
|
do | do...while loop Scope JS statements Body do {
$END$
} while($COND$) Parameters
|
dw | writeln function call Scope JS statements Body document.writeln($END$); Parameters
|
else | else statement Scope JS statements Body else {
$END$
} Parameters
|
for | for loop Scope JS statements (up to ES 5, not in TS) Body for (var $VAR$ = 0; $VAR$ < $LENGTH$; $VAR$++){
$END$
} Parameters
|
forin | for...in loop Scope JS statements (up to ES 5, not in TS) Body for (var $VAR$ in $ARRAY$){
$END$
} Parameters
|
forr | reverse for loop Scope JS statements (up to ES 5, not in TS) Body for (var $VAR$=$LENGTH$-1;$VAR$ >=0; $VAR$--){
$END$
} Parameters
|
fun | Create JavaScript function Scope JS expressions Body function($parameters$){
$END$
} Parameters
Before expansion |
function | Scope JS statements Body function $name$($parameters$){
$END$
} Parameters
|
if | if statement Scope JS statements Body if ($COND$){
$END$
} Parameters
|
while | while loop Scope JS statements Body while ($COND$){
$END$
} Parameters
|
with | with statement Scope JS statements Body with ($EXPR$){
$END$
} Parameters
|
switch | switch statement Scope JS statements Body switch ($EXPR$){
case $CASE1$:
$END$
default:
} Parameters
|
try | try catch statement Scope JS statements Body try {
$END$
} catch (e) {
} Parameters
|
itar | Iterate an array Scope JS statements Body for (var $INDEX$=0;$INDEX$<$ARRAY$.length;$INDEX$++){
var $VAR$ = $ARRAY$[$INDEX$];$END$
} Parameters
Before expansion |
generator | generator Scope JS statements (ES 6, not in TS) Body function *$name$($parameters$){
$END$
} Parameters
|
forof | for-of loop Scope JS statements (ES 6) Body for ($VARKIND$ $VAR$ of $ARRAY$){
$END$
} Parameters
|



