“Agregue la propiedad al objeto condicionalmente” Código de respuesta

Agregue la propiedad al objeto condicionalmente

// Add Propperties to an object conditionally.

const isOnline = true;
const user = { 
	id: 1,
    name: 'John',
    ...(isOnline && { active: true }),
}

console.log(user);
// { id: 1, name: 'John', active: true }
The Ultimate Karam

Agregar condicionalmente propiedad al objeto

const trueCondition = true;const falseCondition = false;const obj = {  ...(trueCondition && { dogs: "woof" }),  ...(falseCondition && { cats: "meow" }),};// { dogs: 'woof' }
Clever Cheetah

Respuestas similares a “Agregue la propiedad al objeto condicionalmente”

Preguntas similares a “Agregue la propiedad al objeto condicionalmente”

Más respuestas relacionadas con “Agregue la propiedad al objeto condicionalmente” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código