JSFiddle - React, Tailwind, and code Playground

by eget teteete

JavaScript

let a = 5, b = 6;
[a, b] = [b, a];
console.log(`${a} ${b}`);