xxxxxxxxxx
const toggleBool = (val) => (val = !val)
toggleBool(false) //true
xxxxxxxxxx
let booleanValue = true; // or false, depending on the initial value
booleanValue = !booleanValue; // using the logical NOT operator (!) to toggle the boolean value
console.log(booleanValue); // Output: If the initial value was true, it will be false now, and vice versa