310 likes | 559 Views
This presentation covers everything about arrays in JavaScript. The Array object lets you store multiple values in a single variable. It stores a fixed-size sequential collection of elements of the same type. It is used to store a collection of data and it uses only integers as element indexes.<br><br>You will learn the below topics in this JavaScript presentation:<br>1. What arrays are and how they behave in JavaScript<br>2. Basics of JavaScript array<br>3. How you can perform operations on an array<br>4. JavaScript array methods<br>5. Manipulation of arrays in JavaScript<br><br>About Simplilearn's Full Stack Java Developer Course:<br>This Full Stack Java Developer program is designed to give you an essence of front-end, middleware, and back-end Java web developer technologies. Youu2019ll learn to build an end-to-end application, test and deploy code, store data using MongoDB, and much more.<br><br>Key Features:<br>1. Get noticed by top companies through Simplilearn's JobAssist Program<br>2. Comprehensive blended learning program<br>3. 350 hours of in-depth training<br>4. 30 in-demand tools and skills<br>5. 4 industry-aligned capstone projects to choose from<br>6. 20 lesson-end 6 phase-end hands-on projects<br><br>Simplilearnu2019s Full-Stack Java Developer program provides extensive hands-on training in front-end, middleware, and back-end Java technology skills along with phase-end and capstone projects based on real business scenarios.<br><br>Skills Covered:<br>1. Agile<br>2. JavaHibernate and JPASpring Core 5.0<br>3. DevOpsHTML5 and CSS3<br>4. AWS<br>5. JavaScript <br>6. ES6Servlets<br>7. SOAP and REST<br>8. JSP<br><br>ud83dudc49Learn more at: https://bit.ly/3bAwISo
E N D
What’s in it for you? What is an Array?
What’s in it for you? What is an Array? Array Operations
What’s in it for you? What is an Array? Array Operations Array Methods
What’s in it for you? What is an Array? Array Operations Array Methods Map, Reduce and Filter
What’s in it for you? What is an Array? Array Operations Map, Reduce and Filter Array Methods
What’s in it for you? What is an Array? Array is an object that lets you store multiple values in a single variable Length of a JavaScript array and the types of its elements are not fixed Array Operations Map, Reduce and Filter Array Methods Array can only use integers as element indexes
What’s in it for you? What is an Array? Array Operations Array Methods Map, Reduce and Filter
What’s in it for you? Array Operations Array Methods Map, Reduce and Filter
What’s in it for you? Array Operations Create an array Array Methods Map, Reduce and Filter
What’s in it for you? Array Operations Access an array item Array Methods Map, Reduce and Filter
What’s in it for you? Array Operations Array length property Array Methods Map, Reduce and Filter
What’s in it for you? Array Operations Access last array item Array Methods Map, Reduce and Filter
What’s in it for you? Array Operations Loop over an array item Array Methods Map, Reduce and Filter
What’s in it for you? What is an Array? Array Operations Array Methods Map, Reduce and Filter
What’s in it for you? Array Methods Array Operations What is an Array? Map, Reduce and Filter
What’s in it for you? Array Methods toString() : Convert an array into string What is an Array? Array Operations Map, Reduce and Filter
What’s in it for you? Array Methods pop() : Remove the last element from an array What is an Array? Array Operations Map, Reduce and Filter
What’s in it for you? Array Methods push() : Add a new element at the end of an array What is an Array? Array Operations Map, Reduce and Filter
What’s in it for you? Array Methods shift() : Remove the first element from an array What is an Array? Array Operations Map, Reduce and Filter
What’s in it for you? Array Methods unshift() : Add an element at the beginning of an array What is an Array? Array Operations Map, Reduce and Filter
What’s in it for you? Array Methods concat() : Create a new array by merging existing arrays What is an Array? Array Operations Map, Reduce and Filter
What’s in it for you? Array Methods sort() : Sort an array in ascending order What is an Array? Array Operations Map, Reduce and Filter
What’s in it for you? Array Methods reverse() : Reverse the elements of an array What is an Array? Array Operations Map, Reduce and Filter
What’s in it for you? What is an Array? Array Operations Array Methods Map, Reduce and Filter
What’s in it for you? Map, Reduce and Filter Array Operations Array Methods What is an Array?
What’s in it for you? Map, Reduce and Filter Array.map() The map() method creates a new array and performs a function on each array element What is an Array? Array Operations Array Methods
What’s in it for you? Map, Reduce and Filter Array.filter() The filter() method takes each element in an array and it applies a conditional statement against it What is an Array? Array Operations Array Methods
What’s in it for you? Map, Reduce and Filter Array.reduce() The reduce() method reduces an array of values down to just one value using a function What is an Array? Array Operations Array Methods