JavaScript toSpliced Function Explained with Examples

javascript tospliced function

The toSpliced function creates a new array without changing the original array in JavaScript. It returns a copy with new values at defined positions and leaves other elements unchanged.

Understand the toSpliced Function in JavaScript

The toSpliced function returns a new array after you cut and insert values at specific positions.

Here is the syntax:

array.toSpliced(startIndex, deleteCount, item1, item2)
  • startIndex shows the index to start the cut.
  • deleteCount shows how many elements to cut.
  • You add new values after these two arguments.
    The output will be a fresh array with your changes.

It creates a copy and executes your edits in a new array.

Here is a quick example:

const numbers = [1, 2, 3, 4];
const newNumbers = numbers.toSpliced(1, 2, 9, 10);
console.log(newNumbers);

This returns [1, 9, 10, 4] , and the original array stays [1, 2, 3, 4].

You can create changes to data lists for user interfaces or logs.

The Difference Between splice and toSpliced

The splice function edits the original array directly and changes its content while the toSpliced function creates a new array with the change and keeps the original one stay as it.

Here is a table that shows you the key differences:

Aspectsplice (edits in place)toSpliced (creates new array)
Original ArrayChanges directlyRemains the same
Return ValueThe removed elementsA new array with changes
MutabilityMutableImmutable

You can use the splice function for direct edits where you need the change in the original array.

Use the toSpliced function for edits where you must keep the source array unchanged.

Examples

Replace Elements in a Copy:

const fruits = ['apple', 'banana', 'cherry'];
const copy = fruits.toSpliced(1, 1, 'mango');
console.log(copy);

It removes one element at index one, then it adds a new value, and the original stays the same.

Insert Values Without Deletion:

const letters = ['a', 'b', 'c'];
const newLetters = letters.toSpliced(1, 0, 'x', 'y');
console.log(newLetters);

This makes a new array and puts two letters at index one. It keeps the original as it is.

Remove Multiple Values from a Copy:

const data = [10, 20, 30, 40, 50];
const result = data.toSpliced(1, 3);
console.log(result);

This removes three values starting at index one from a copy and keeps the original one.

Advanced Insert and Remove:

const records = [100, 200, 300, 400, 500];
const thisCopy = records.toSpliced(2, 2, 999, 888, 777);
console.log(thisCopy);

This edits a copy with three new values at index two after two removals and leaves the source untouched.

Wrapping Up

You learned what toSpliced does and how it differs from splice.

The toSpliced creates a new array with changes, while splice edits the original array directly.

FAQs

What is JavaScript toSpliced function?

The toSpliced function in JavaScript creates a new array without changing the original array. It works like splice but does not mutate. Example:

const arr = [1, 2, 3, 4];
const newArr = arr.toSpliced(1, 2);
console.log(newArr); // [1, 4]
console.log(arr);    // [1, 2, 3, 4]

What is the syntax of JavaScript toSpliced function?

The syntax is simple and follows this structure:

array.toSpliced(start, deleteCount, item1, item2, ...)
  • start: index where changes start.
  • deleteCount: number of items removed.
  • item1, item2: new items added.

How does toSpliced differ from splice in JavaScript?

splice changes the original array, while toSpliced returns a new one. Example:

const arr1 = [10, 20, 30];
const arr2 = arr1.splice(1, 1);
console.log(arr1); // [10, 30]

const arr3 = [10, 20, 30];
const arr4 = arr3.toSpliced(1, 1);
console.log(arr3); // [10, 20, 30]
console.log(arr4); // [10, 30]

Can JavaScript toSpliced function insert new elements?

Yes, you can insert new elements at any index without altering the original array. Example:

const arr = [5, 10, 20];
const result = arr.toSpliced(1, 0, 15, 18);
console.log(result); // [5, 15, 18, 10, 20]
console.log(arr);    // [5, 10, 20]

Similar Reads

JavaScript Class and Object Constructors with Examples

Object constructors and class constructors in JavaScript create objects in a structured way. Both provide methods to build reusable code.…

JavaScript for…in Loop: Iterating Over Objects

You may need to loop through properties when you work with objects in JavaScript. The for...in loop helps you do…

Print in JavaScript Console Using Log, Info, Warn, and Error

The JavaScript console is a tool in web browsers that helps you print the result to the web browser. It…

JavaScript Logical Operators with Examples

Logical operators in JavaScript let you check conditions and combine multiple checks in your code. In this guide, you will…

JavaScript Math tan: The Tangent of an Angle in Radians

JavaScript Math.tan() finds the tangent of an angle in radians. You use it when you need to solve angle-based math.…

Assignment Operator in JavaScript with Examples

The assignment operator in JavaScript stores and updates values. It helps you hold data in a variable and change it…

Top 5 Code Editors: The Best IDE for JavaScript

If you are a coder, one of your primary requirements is to have a trustworthy code- editor. A Code editor…

Math pow in JavaScript : How to Raise Numbers to Power

The Math.pow() function in JavaScript solves one common task. It raises a number to a power. This helps avoid loops…

JavaScript While Loop: How It Works with Examples

The JavaScript while loop runs code as long as a condition stays true. You can use it to repeat tasks…

JavaScript Polyfilling & Transpiling Guide for Beginners

JavaScript moves fast, and new features come. Some browsers do not support these features and cause issues for users. Developers…

Previous Article

PHP array_key_last Function: How it Works with Examples

Next Article

What is HTML for Beginners and How it Works for Beginners

Write a Comment

Leave a Comment

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


Subscribe to Get Updates

Get the latest updates on Coding, Database, and Algorithms straight to your inbox.
No spam. Unsubscribe anytime.