https://github.com/tapascript/js-array-course
  
  
    JavaScript Array Master Course. Learn JavaScript with fundamentals and practice. 
    https://github.com/tapascript/js-array-course
  
arrays data-structures javascript tapascript
        Last synced: 17 days ago 
        JSON representation
    
JavaScript Array Master Course. Learn JavaScript with fundamentals and practice.
- Host: GitHub
- URL: https://github.com/tapascript/js-array-course
- Owner: tapascript
- Created: 2024-11-07T03:03:20.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-03-30T14:32:15.000Z (7 months ago)
- Last Synced: 2025-05-20T11:06:04.714Z (5 months ago)
- Topics: arrays, data-structures, javascript, tapascript
- Language: JavaScript
- Homepage: https://youtube.com/tapasadhikary
- Size: 80.1 KB
- Stars: 86
- Watchers: 2
- Forks: 9
- Open Issues: 0
- 
            Metadata Files:
            - Readme: readme.md
 
Awesome Lists containing this project
README
          # JavaScript Array Master Course 🔥
Welcome to the JavaScript Array Master Course!!!
This repository contains all the source code, tasks, and course flow. The source code is in the [`index.js`](./index.js) file, and the tasks are in the [`task.md`](./task.md) file.
I hope you like this effort ❤️ and show your support 🤝. 
You can do the following:
- Give a ⭐ to this repository.
- [Subscribe to tapaScript English Channel.](https://youtube.com/@tapasadhikary?sub_confirmation=1)
- [Subscribe to tapaScript Bangla Channel.](https://youtube.com/@tapascript-bangla?sub_confirmation=1)
Many Thanks to all the supporters 🫶
[](https://github.com/atapas/tapascript/js-array-course)
## 📹 Course Videos
The course is available in Bangla and English.
### 🟢 Bangla Course
Access the course in Bangla from here: [JavaScript Array Master Course](https://www.youtube.com/watch?v=cnClUIjNvGw&list=PLRFcjW6Dq28m62Ph9no5nUUU57dNGP_OJ)
### 🟠 English Course
Access the [FULL COURSE FROM HERE](https://www.youtube.com/watch?v=t05NguKFKo0). Please follow the series `40 Days of JavaScript` on the [tapaScript English Channel](https://youtube.com/@tapasadhikary?sub_confirmation=1). Subscribe, turn the notification ON.
## 📚 Course Flow
-   [x] Introduction
-   [x] What is an Array in JavaScript?
-   [x] How to Create an Array in JavaScript?
-   [x] How to Get Elements from an Array in JS?
-   [x] How to Add Elements to an Array in JS?
-   [x] How to Remove Elements from an Array in JS?
-   [x] How to Copy and Clone an Array in JS?
-   [x] How to Determine if a Value is an Array in JS?
-   [x] Array Destructuring in JavaScript
-   [x] How to Assign a Default Value to a Variable?
-   [x] How to Skip a Value in an Array?
-   [x] Nested Array Destructuring in JS
-   [x] How to Use the Rest Parameter in JS?
-   [x] How to Use the Spread Operator in JS?
-   [x] Destructuring Use Cases in JavaScript
    -   [x] How to Swap Values with Destructuring?
    -   [x] How to Merge Arrays?
-   [X] The length property
-   [ ] JavaScript Array Methods
    -   [X] How to Create, Remove, Update, and Access Arrays in JavaScript?
        -   [X] The concat() array method
        -   [X] The join() array method
        -   [X] The fill() array method
        -   [X] The includes() array method
        -   [X] The indexOf() array method
        -   [X] The reverse() array method
        -   [X] The sort() array method
        -   [X] The splice() array method
        -   [X] The at() Method
        -   [X] The copyWithin() Method
        -   [X] The flat() Method
    -   [X] Static Array Methods in JavaScript
        -   [X] The Array-Like
        -   [X] The Array.from() array method
        -   [X] The Array.fromAsync() array method
        -   [X] The Array.of() array method
    -   [X] Array Iterator Methods in JavaScript
        -   [X] The filter() array method
        -   [X] The map() array method
        -   [X] The flatMap() array method
        -   [X] The reduce() array method
        -   [X] The reduceRight() array method
        -   [X] The some() array method
        -   [X] The find() array method
        -   [X] The findIndex() array method
        -   [X] The findLast() array method
        -   [X] The findLastIndex() array method
        -   [X] The forEach() array method
        -   [X] The every() array method
        -   [X] The entries() method
        -   [X] The values() method
    -   [X] Immutability
        -   [X] The toReversed() method
        -   [X] The toSorted() method
        -   [X] The toSpliced() method
        -   [X] The with() method
-   [X] Tasks and Quizzes With Interview Questions