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.
Table of Content
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)startIndexshows the index to start the cut.deleteCountshows 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:
| Aspect | splice (edits in place) | toSpliced (creates new array) |
|---|---|---|
| Original Array | Changes directly | Remains the same |
| Return Value | The removed elements | A new array with changes |
| Mutability | Mutable | Immutable |
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?
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?
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?
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
Object constructors and class constructors in JavaScript create objects in a structured way. Both provide methods to build reusable code.…
You may need to loop through properties when you work with objects in JavaScript. The for...in loop helps you do…
The JavaScript console is a tool in web browsers that helps you print the result to the web browser. It…
Logical operators in JavaScript let you check conditions and combine multiple checks in your code. In this guide, you will…
JavaScript Math.tan() finds the tangent of an angle in radians. You use it when you need to solve angle-based math.…
The assignment operator in JavaScript stores and updates values. It helps you hold data in a variable and change it…
If you are a coder, one of your primary requirements is to have a trustworthy code- editor. A Code editor…
The Math.pow() function in JavaScript solves one common task. It raises a number to a power. This helps avoid loops…
The JavaScript while loop runs code as long as a condition stays true. You can use it to repeat tasks…
JavaScript moves fast, and new features come. Some browsers do not support these features and cause issues for users. Developers…