6 lines
109 B
Plaintext
6 lines
109 B
Plaintext
# -*- mode: snippet -*-
|
|
#name : for
|
|
# --
|
|
for(var ${1:i} = ${2:0}; $1 < ${3:collection}.length; $1++) {
|
|
$0
|
|
} |