-
#28 Regular Expressions in JavaScript Part 1
What Is a Regular Expression? A regular expression is a sequence of characters that forms a search pattern. When you search for data in a text, you can use this search pattern to describe what you are searching for. A regular expression can be a single character or a more complicated pattern. Regular expressions can…
-
JavaScript Tutorial 1: Functions
This is my first javascript tutorial, I decided to make it on functions since it’s an important part of javascript. Original source
-
#1 JavaScript Tutorial | Why you should Learn JavaScript Today
In this video, I will be answer a basic yet important question of why you should be learn JavaScript today! Initially when JS was invented by Brendan Eich in 1995, it was supposed to function only as a scripting language on the client side for web development. However, JS has evolved and diversified a lot…
-
Lộ trình học web JavaScript? Làm sao học English hiệu quả?
Nếu muốn mua áo ủng hộ tụi mình, các bạn vào https://bit.ly/aocodergang và comment nha. Các bạn xem danh sách câu hỏi trong mục description nha! Những câu hỏi trong kì này: – VPS có thể làm được những trò gì thú vị – Hai anh dùng laptop nào? Macbook có gì hay – Học…
-
#26 Form Validations in JavaScript
Original source
-
#12 JavaScript Tutorial | While loop
A while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating if statement. Once the expression becomes false, the loop terminates. The while loop is primarily used when the number of iterations in not known…
-
#18 JavaScript Tutorial | Objects p.2
JavaScript is an Object Oriented Programming (OOP) language. A programming language can be called object-oriented if it provides four basic capabilities to developers − Encapsulation − the capability to store related information, whether data or methods, together in an object. Aggregation − the capability to store one object inside another object. Inheritance − the capability…
-
#8 JavaScript Tutorial | Control Statements | Theory
JavaScript Control Statements also known as Control Structures or Flow Control statements are statements which decide the execution flow of the program. Typically the program execution begins from the first line in the to the last line of that JS code. However, in between this the flow of the execution can be branched(based on some…
-
#2 JavaScript Tutorial | What is Dom? | Document Object Model
In this video tutorial of JavaScript fundamentals, we will study and understand the concept of Document Object Model also known as DOM. Document Object Model(DOM) – The Document Object Model (DOM) defines the logical structure of documents and the way a document is accessed and manipulated. The name “Document Object Model” was chosen because it…