JavaScript
HTML
CSS
jQuery
PHP
SQL
WordPress
JavaScript Reference

Quick Reference

The Array slice() method returns selected elements in an array as a new array, without changing the original array.

				
					<!-- html element to place output -->
<p id="my_cars"></p>
				
			
				
					// array
let cars = ['Lamborghini', 'Ferrari', 'Maserati', 'Alfa Romeo'];

// create new array
let new_cars = cars.slice(1, 3);

// output changed array info to HTML element
document.getElementById('my_cars').innerHTML = 'New Cars: ' + new_cars;
				
			

The way this works (see Syntax section below):

  • The slice() method removes items from the original array starting from a specified position (in this case 1) and ending before a specified position (in this case 3)

Output

				
					New cars: Ferrari,Maserati
				
			

Syntax

				
					array.slice(start, end)
				
			

Parameters

ParameterDescription
startStart position; negative numbers select from the end of the array (default is 0)
endEnd position; negative numbers select from the end of the array (default is last item)

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

JavaScript
HTML
CSS
jQuery
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.