Descripción
Swap two variables using temp
File Template: ❌
Prefix
var:swap
Scopes
javascript
Snippet de código
let temp = ${1:a};
${1:a} = ${2:b};
${2:b} = temp;
Swap two variables using temp
var:swap
javascript
let temp = ${1:a};
${1:a} = ${2:b};
${2:b} = temp;