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: Master the Spread Operator (…)

- 10.07.26 - ErcanOPAK

… Spread Operator = Power

Copying arrays is tedious. Spread operator makes it easy. Copy, merge, expand — clean code.

📝 Spread with Arrays

// Copy array
const original = [1, 2, 3];
const copy = [...original];
console.log(copy); // [1, 2, 3]

// Merge arrays
const arr1 = [1, 2, 3];
const arr2 = [4, 5, 6];
const merged = [...arr1, ...arr2];
console.log(merged); // [1, 2, 3, 4, 5, 6]

// Add elements
const numbers = [1, 2, 3];
const extended = [0, ...numbers, 4];
console.log(extended); // [0, 1, 2, 3, 4]

// Function arguments
const args = [1, 2, 3];
Math.max(...args); // Same as Math.max(1, 2, 3)

// Convert arguments to array
function myFunction() {
    const args = [...arguments];
    return args;
}

🎯 Spread with Objects

// Copy object
const original = { name: 'Alice', age: 30 };
const copy = { ...original };
console.log(copy); // { name: 'Alice', age: 30 }

// Merge objects
const user = { name: 'Alice' };
const details = { age: 30, city: 'NYC' };
const merged = { ...user, ...details };
console.log(merged); // { name: 'Alice', age: 30, city: 'NYC' }

// Override properties
const user1 = { name: 'Alice', age: 30 };
const user2 = { ...user1, age: 31 };
console.log(user2); // { name: 'Alice', age: 31 }

// Immutable updates
const state = { count: 0 };
const newState = { ...state, count: state.count + 1 };

// Remove property (destructuring)
const { age, ...rest } = user;
console.log(rest); // { name: 'Alice', city: 'NYC' }

// Nested objects (shallow copy)
const obj = { a: 1, b: { c: 2 } };
const shallowCopy = { ...obj };
shallowCopy.b.c = 3;
console.log(obj.b.c); // 3 (shallow copy)

💡 Spread Tips

  • Use for immutable updates
  • Great for React state
  • Shallow copy only (nested objects)
  • Combine with destructuring
  • Use rest operator for remaining

“Spread operator makes copying and merging easy. Essential for modern JavaScript.”

— JavaScript Developer

Related posts:

JavaScript: Advanced Memory Cleanup with WeakRef

JavaScript: Understand Hoisting

JS “Undefined Errors in Loops” — The Closure Trap

Post Views: 0

Post navigation

HTML: Use Details & Summary for Collapsible Content
Ajax: Use WebSockets for Real-Time Communication

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 (857)
  • 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 (857)
  • 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