Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Include Method
In this video, we will explore the include() method used to check whether an array includes a certain value, returning true or false based on the result, which provides a convenient way to determine if an array contains a specific...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - The toString(), valueOf(), and fill() Methods
In this video, we will understand different functionalities for working with arrays. The function toString() converts an array to a string representation, valueOf() returns the array itself, and fill() allows for filling array elements...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Indexof and lastindex Methods
In this video, we will discover methods used to search for the index of a specified element within an array. The function indexOf() returns the first occurrence of the element, while lastIndexOf() returns the last occurrence.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - The isArray Method
In this video, we will discuss how to check whether a value is an array using the isArray() function, which is useful for validating whether a variable contains an array before performing array-specific operations.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Concat and Join Methods
In this video, you will learn to combine multiple arrays into a single array using concat(). Additionally, you will learn about join(), which converts an array into a string by concatenating its elements with a specified separator.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pop and Push Methods
In this video, you will learn how to add and remove elements at the end of an array using push() and pop() respectively. We will explore these methods, which are useful for managing the dynamic size of an array.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Modify and Delete Arrays
In this video, we will explore various methods to modify and delete elements within an array, including changing values at specific indices, removing elements using splice(), and clearing the entire array.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Arrays
In this video, you will learn about arrays in JavaScript, covering how to create and access arrays, as well as perform basic operations such as adding and removing elements.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Nested Loop
In this video, we will understand the concept of nesting loops, where one loop is placed inside another and how nested loops can be used to iterate over multiple levels of data structures or perform repetitive tasks with varying complexity.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Function with Return
In this video, we will discover the concept of return statements in JavaScript functions. You will learn to use return statements to return values from functions, making them more versatile and allowing us to use the returned value in...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Prompt Box
In this video, we will explore the prompt box in JavaScript, which enables us to prompt the user for input. You will learn to create input dialogs using prompt boxes and use the user's input in our JavaScript code.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Alert Boxes
In this video, we will discover how to use alert boxes in JavaScript to display messages to the user. You will learn to create custom alert messages and use them for various purposes in JavaScript code.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Assignment Operator
In this video, we will understand the assignment operator in JavaScript, which allows us to assign values to variables. We will explore different ways to assign values and modify variables using shorthand notation and compound assignment...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Data Types
In this video, we will explore the various data types in JavaScript, such as numbers, strings, Booleans, arrays, objects. We will understand how to work with these data types effectively, manipulate their values, and perform operations...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Switch Statement
In this video, you will learn to use the "switch" statement in JavaScript to simplify the handling of multiple conditions. We will use this control structure to execute different blocks of code based on the value of a variable or an...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Condition Ternary Statement
In this video, we will discover the concise and compact syntax of the ternary statement in JavaScript. We will use this shorthand form to write conditional expressions with a quick and easy-to-read format.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Advanced console.log
In this video, we will explore the advanced features and functionalities of the "console.log" method in JavaScript, how to format console output, use placeholders and substitutions, and log multiple values in a single statement.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Global and Local Var in JavaScript
In this video, we will dive deeper into variable scopes and understand the differences between global and local variables in JavaScript. You will learn how global variables can be accessed and modified from anywhere in code and discover...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - How to Use HTML Tags in JavaScript
In this video, you will learn to leverage the power of JavaScript to manipulate and interact with HTML elements and how to access HTML tags using JavaScript and modify their content, attributes, and styles dynamically.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - JavaScript Implementation
In this video, we will explore the various ways to implement JavaScript in web projects and how JavaScript can be embedded directly within HTML code or referenced externally in separate JavaScript files.
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - What Are Smart Pointers in Rust
This video talks about smart pointers in Rust. This clip is from the chapter "Intermediate to Advanced Videos in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".null
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - What Are Closures in Rust
This video explains closures in Rust. This clip is from the chapter "Intermediate to Advanced Videos in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".null
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Reader and Writer Inputs and Outputs in Rust – Reading the File
In Rust, working with files is a crucial aspect of many applications, from handling user data to processing large amounts of information. To work with files in Rust, you will need to use the Reader and Writer types, which provide an...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - What Are Enums in Rust
This video demonstrates Enums in Rust. This clip is from the chapter "Beginner to Intermediate Lessons" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner to intermediate...