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