Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

126
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!