“Togle Boolean JS” Código de respuesta

JavaScript Toggle Variable

var thing = true; //try changing this to false
thing = !thing; //the variable will go from true to false, or from false to true
The Amateur

Togle Boolean JS

const toggleBool = (val) => (val = !val)

toggleBool(false) //true
Noob Dev

Respuestas similares a “Togle Boolean JS”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código