Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

125
Vistas
How to merge two options

I have two different options in JavaScript

Option 1:

        var _option = {
            "displayLength": _length,
            "order": [[ _order, ""+_sort+"" ]],
            "paging": _pages,
            "info": _info,
            "searching": _search
        }

Option 2:

        var _button_option = {
            dom: 'Bfrtip',
            buttons: [
                'copy',
                'excel',
                'print'
            ]
        }

I want to merge two option values to the one values

Result like this:

        var _option = {
            "displayLength": _length,
            "order": [[ _order, ""+_sort+"" ]],
            "paging": _pages,
            "info": _info,
            "searching": _search,
            dom: 'Bfrtip',
            buttons: [
                'copy',
                'excel',
                'print'
            ]
        }

How to merge two options in JavaScript?

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You can use the Object.assign here

_option =  Object.assign({}, _option, _button_option)

or

Object.assign(_option, _button_option)

Or you can spread it like

_option = {..._option, ..._button_option}

For reference visit this

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda