Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
JavaScript

JavaScript: Use Spread Operator (…) for Cleaner Arrays and Objects

- 14.06.26 - ErcanOPAK

… Spreads Arrays and Objects

concat() is old. Object.assign() is verbose. Spread operator (…) spreads elements. Merge arrays, clone objects, convert to array.

❌ Old Way

const combined = arr1.concat(arr2);
const copy = Object.assign({}, obj);
const args = Array.prototype.slice.call(arguments);

✅ Spread Operator

const combined = [...arr1, ...arr2];
const copy = { ...obj };
const args = [...arguments];

🎯 Advanced Spread

// Array operations
const first = [1, 2, 3];
const second = [4, 5, 6];
const combined = [...first, ...second];
const copy = [...first];
const withMiddle = [...first, 99, ...second];

// Object operations
const user = { name: 'Alice', age: 30 };
const address = { city: 'NYC', country: 'USA' };
const full = { ...user, ...address };
const updated = { ...user, age: 31 };
const { age, ...rest } = user;  // rest operator

// Function calls
const numbers = [1, 2, 3, 4, 5];
Math.max(...numbers);

// Convert NodeList to array
const divs = [...document.querySelectorAll('div')];

💡 Immutability

  • Spread creates shallow copy (nested objects still referenced)
  • Use for immutable updates (React state, Redux)
  • Combine with rest operator for destructuring
  • Works with any iterable (strings, maps, sets)

“concat() and Object.assign() are verbose. Spread operator is elegant. My React code uses spread everywhere. Cleaner, fewer bugs.”

— React Developer

Related posts:

JavaScript: Use setTimeout and setInterval for Timers

JavaScript: Master ES6 Classes for OOP

JavaScript: Use Temporal API for Modern Date and Time Handling

Post Views: 4

Post navigation

HTML: Use Lang Attribute for Accessibility and SEO
Ajax: JSON is Better Than XML — Here’s Why

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

July 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  
« Jun    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (858)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (597)
  • Add Constraint to SQL Table to ensure email contains @ (582)
  • Average of all values in a column that are not zero in SQL (545)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (512)
  • Find numbers with more than two decimal places in SQL (460)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes
  • Ajax: Use Axios for HTTP Requests
  • JavaScript: Understand Hoisting
  • HTML: Use Web Storage for Client-Side Data
  • CSS: Use Filter Effects for Visual Magic
  • Windows 11: Unlock God Mode for All Settings

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (858)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com