Select Git revision
arrayDestructuring.key.js
Forked from
SOFT Core / SOFT 260 / JavaScript Practice
Source project has a limited visibility.
-
Brady James Garvin authoredBrady James Garvin authored
arrayDestructuring.key.js 187 B
export class Swappable {
constructor(first, second) {
this.first = first;
this.second = second;
}
swap() {
[this.first, this.second] = [this.second, this.first];
}
}