logo Online Learner
  • Home
  • Learning Paths
  • Notes
  • Free Resume Builder
  • Portfolio
  • About Us
  • Contact Us
  • Login
  • Sign Up
  1. Learning Paths
  2. JavaScript Tutorial
  3. Regular Expressions in JavaScript

Regular Expressions in JavaScript

Regular Expressions (regex) are powerful patterns used for matching, searching, and manipulating text. In JavaScript, they are implemented as objects with methods for various string operations.

Creating Regular Expressions

1. Literal Notation (Most Common)

const regex = /pattern/flags;

2. Constructor Notation

const regex = new RegExp('pattern', 'flags');

Flags (Modifiers)

  • i - Case insensitive
  • g - Global search (find all matches)
  • m - Multiline mode
  • s - Dotall mode (dot matches newlines)
  • u - Unicode mode
  • y - Sticky mode
// Examples
const caseInsensitive = /hello/i;
const globalSearch = /world/g;
const multiFlag = /test/gi; // case insensitive + global

Basic Patterns

Literal Characters

const regex = /hello/;
console.log(regex.test("hello world")); // true
console.log(regex.test("Hello world")); // false (case sensitive)

Special Characters (Need Escaping)

// These need to be escaped with \
const specialChars = /\.\*\+\?\^\$\{\}\(\)\|\[\]\\/;

Character Classes

Basic Character Sets

// Match any vowel
const vowels = /[aeiou]/;
console.log(vowels.test("hello")); // true

// Match digits
const digits = /[0-9]/;
console.log(digits.test("abc123")); // true

// Match hexadecimal characters
const hex = /[0-9a-fA-F]/;

Predefined Character Classes

const regex = {
    digit: /\d/,        // [0-9]
    nonDigit: /\D/,     // [^0-9]
    word: /\w/,         // [a-zA-Z0-9_]
    nonWord: /\W/,      // [^a-zA-Z0-9_]
    whitespace: /\s/,   // [ \t\r\n\f]
    nonWhitespace: /\S/ // [^ \t\r\n\f]
};

console.log(/\d/.test("123")); // true
console.log(/\w/.test("hello")); // true

Negated Character Sets

// Match anything except vowels
const notVowels = /[^aeiou]/;
console.log(notVowels.test("aei")); // false
console.log(notVowels.test("abc")); // true (has 'b')

Quantifiers

Basic Quantifiers

// Zero or one (optional)
const optional = /colou?r/;
console.log(optional.test("color")); // true
console.log(optional.test("colour")); // true

// Zero or more
const zeroOrMore = /go*gle/;
console.log(zeroOrMore.test("ggle")); // true
console.log(zeroOrMore.test("google")); // true

// One or more
const oneOrMore = /go+gle/;
console.log(oneOrMore.test("ggle")); // false
console.log(oneOrMore.test("google")); // true

// Exact number
const exact = /\d{3}/; // exactly 3 digits
console.log(exact.test("123")); // true
console.log(exact.test("12")); // false

// Range
const range = /\d{2,4}/; // 2 to 4 digits
console.log(range.test("1")); // false
console.log(range.test("12")); // true
console.log(range.test("1234")); // true

Greedy vs Lazy Quantifiers

const text = "<div>content</div>";

// Greedy (default) - matches as much as possible
const greedy = /<.*>/;
console.log(text.match(greedy)[0]); // "<div>content</div>"

// Lazy - matches as little as possible
const lazy = /<.*?>/;
console.log(text.match(lazy)[0]); // "<div>"

Anchors and Boundaries

// Start of string
const start = /^Hello/;
console.log(start.test("Hello world")); // true
console.log(start.test("World Hello")); // false

// End of string
const end = /world$/;
console.log(end.test("Hello world")); // true
console.log(end.test("world Hello")); // false

// Word boundary
const boundary = /\bword\b/;
console.log(boundary.test("keyword")); // false
console.log(boundary.test("a word here")); // true

Groups and Capturing

Capturing Groups

const dateRegex = /(\d{2})-(\d{2})-(\d{4})/;
const match = "15-05-2023".match(dateRegex);

console.log(match[0]); // "15-05-2023" (full match)
console.log(match[1]); // "15" (day)
console.log(match[2]); // "05" (month)
console.log(match[3]); // "2023" (year)

Non-Capturing Groups

// (?:pattern) - group but don't capture
const nonCapturing = /(?:Mr|Ms|Mrs)\. (\w+)/;
const match = "Mr. Smith".match(nonCapturing);
console.log(match[1]); // "Smith" (only this is captured)

Named Capturing Groups

const namedRegex = /(?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2})/;
const match = "2023-05-15".match(namedRegex);

console.log(match.groups.year);  // "2023"
console.log(match.groups.month); // "05"
console.log(match.groups.day);   // "15"

Lookaheads and Lookbehinds

// Positive lookahead - match 'q' followed by 'u'
const lookahead = /q(?=u)/;
console.log(lookahead.test("queen")); // true

// Negative lookahead - match 'q' not followed by 'u'
const negativeLookahead = /q(?!u)/;
console.log(negativeLookahead.test("Iraq")); // true

// Positive lookbehind - match 'd' preceded by 'c'
const lookbehind = /(?<=c)d/;
console.log(lookbehind.test("cd")); // true

// Negative lookbehind - match 'd' not preceded by 'c'
const negativeLookbehind = /(?<!c)d/;
console.log(negativeLookbehind.test("ad")); // true

Regex Methods

String Methods that Use Regex

1. match()

const text = "Hello world, hello universe";
const regex = /hello/gi;

const matches = text.match(regex);
console.log(matches); // ["Hello", "hello"]

2. matchAll() (ES2020)

const text = "test1 test2 test3";
const regex = /test(\d)/g;

for (const match of text.matchAll(regex)) {
    console.log(`Found: ${match[0]} with number: ${match[1]}`);
}
// Found: test1 with number: 1
// Found: test2 with number: 2
// Found: test3 with number: 3

3. replace()

const text = "John Smith";
const result = text.replace(/(\w+) (\w+)/, "$2, $1");
console.log(result); // "Smith, John"

// With function
const text2 = "price: 100, price: 200";
const result2 = text2.replace(/\d+/g, match => parseInt(match) * 1.1);
console.log(result2); // "price: 110, price: 220"

4. search()

const text = "Hello world";
const position = text.search(/world/);
console.log(position); // 6

5. split()

const text = "apple,banana,cherry";
const fruits = text.split(/,/);
console.log(fruits); // ["apple", "banana", "cherry"]

Regex Object Methods

1. test()

const regex = /\d{3}/;
console.log(regex.test("abc123")); // true
console.log(regex.test("abc")); // false

2. exec()

const regex = /\d+/g;
const text = "100 apples, 200 bananas";

let match;
while ((match = regex.exec(text)) !== null) {
    console.log(`Found ${match[0]} at index ${match.index}`);
}
// Found 100 at index 0
// Found 200 at index 13

Practical Examples

1. Email Validation

function validateEmail(email) {
    const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
    return emailRegex.test(email);
}

console.log(validateEmail("test@example.com")); // true
console.log(validateEmail("invalid.email"));    // false

2. Password Strength Checker

function checkPasswordStrength(password) {
    const checks = {
        length: /.{8,}/,
        lowercase: /[a-z]/,
        uppercase: /[A-Z]/,
        digit: /\d/,
        special: /[!@#$%^&*(),.?":{}|<>]/
    };
    
    let strength = 0;
    for (const check in checks) {
        if (checks[check].test(password)) strength++;
    }
    
    return strength;
}

console.log(checkPasswordStrength("Password123!")); // 5

3. URL Parser

function parseURL(url) {
    const urlRegex = /^(https?):\/\/([^\/]+)(\/[^?#]*)?(\?[^#]*)?(#.*)?$/;
    const match = url.match(urlRegex);
    
    if (!match) return null;
    
    return {
        protocol: match[1],
        host: match[2],
        path: match[3] || '/',
        query: match[4] || '',
        hash: match[5] || ''
    };
}

console.log(parseURL("https://example.com/path?query=1#section"));

4. HTML Tag Extractor

function extractTags(html) {
    const tagRegex = /<(\w+)([^>]*)>/g;
    const tags = [];
    let match;
    
    while ((match = tagRegex.exec(html)) !== null) {
        tags.push({
            tag: match[1],
            attributes: match[2].trim()
        });
    }
    
    return tags;
}

const html = '<div class="container"><p>Hello</p><img src="image.jpg"></div>';
console.log(extractTags(html));

5. Credit Card Formatter

function formatCreditCard(number) {
    // Remove non-digits and limit to 16 characters
    const clean = number.replace(/\D/g, '').substring(0, 16);
    
    // Add space every 4 digits
    return clean.replace(/(\d{4})(?=\d)/g, '$1 ');
}

console.log(formatCreditCard("1234567812345678")); // "1234 5678 1234 5678"

6. Template Engine (Simple)

function renderTemplate(template, data) {
    return template.replace(/\{\{(\w+)\}\}/g, (match, key) => {
        return data[key] || match;
    });
}

const template = "Hello {{name}}, you have {{count}} messages.";
const data = { name: "John", count: 5 };
console.log(renderTemplate(template, data)); // "Hello John, you have 5 messages."

Advanced Tips

1. Performance Optimization

// Compile regex once if used repeatedly
const expensiveRegex = new RegExp('complex|pattern|here', 'gi');

function processText(text) {
    return text.replace(expensiveRegex, 'REPLACED');
}

2. Dynamic Regex Construction

function createSearchRegex(searchTerm, caseSensitive = false) {
    const flags = caseSensitive ? 'g' : 'gi';
    // Escape special characters in search term
    const escaped = searchTerm.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
    return new RegExp(escaped, flags);
}

const searchRegex = createSearchRegex("hello.world");
console.log(searchRegex.test("Hello.world")); // true

3. Regex Debugging

function debugRegex(regex, text) {
    console.log(`Regex: ${regex}`);
    console.log(`Text: "${text}"`);
    
    const match = regex.exec(text);
    if (match) {
        console.log('Match found:');
        match.forEach((m, i) => {
            console.log(`  Group ${i}: "${m}"`);
        });
    } else {
        console.log('No match found');
    }
}

debugRegex(/(\d+)-(\w+)/, "123-abc");

Regular expressions are incredibly powerful but can become complex. Always test your regex thoroughly and consider using online tools like Regex101 for debugging and validation.



X (Twitter)
0 likes
Your Feedback

Help us improve by sharing your thoughts

IT and Digital Marketing
keyboard_arrow_left Previous: What is Local Storage?
Online Learner Logo

Online Learner helps developers master programming, database concepts, interview preparation, and real-world implementation through structured learning paths.

Quick Links

  • Learning Paths
  • Notes
  • Free Resume Builder
  • Portfolio

Company

  • About Us
  • Contact Us
  • Terms & Conditions
  • Disclaimer

© 2023 - 2026 OnlineLearner.in | All Rights Reserved.

logo
  • code Frontend
  • storage Backend
  • live_help Interviews
  • work_outline PHP Frameworks
  • settings Routine Use
  • book Blogs
Frontend
  • HTML Tutorial
    • HTML Introduction
    • HTML Tags
    • HTML Elements
    • HTML Attributes
    • HTML Heading
    • HTML Paragraph
    • HTML Formatting
    • HTML Quotations
    • HTML Comments
    • HTML Styles
    • HTML Color
    • HTML CSS
    • HTML Images
    • HTML Favicon
    • HTML Links
    • HTML DIV
    • HTML Tables
    • HTML Table Size
    • HTML Table Head
    • Table Padding & Spa...
    • Table colspan rowspsn
    • HTML Table Styling
    • HTML Colgroup
    • HTML List
    • HTML Block & Inline
    • HTML Classes
    • HTML Id
    • HTML Iframes
    • HTML Head
    • HTML Layout
    • HTML Semantic Elements
    • HTML Style Guide
    • HTML Forms
    • HTML Form Attribute
    • HTML Form Element
    • HTML input type
    • HTML Computer code
    • HTML Entity
    • HTML Symbol
    • HTML Emojis
    • HTML Charset
    • HTML Input Form Att...
    • HTML URL Encoding
  • CSS Tutorial
    • CSS Introduction
    • CSS Syntax
    • CSS Selector
    • How To Add CSS
    • CSS Comments
    • CSS Colors
    • CSS Background color
    • CSS background-image
    • CSS Borders
    • CSS Margins
    • CSS Height, Width a...
    • CSS Box Model
    • CSS Outline
    • CSS Text
    • CSS Fonts
    • CSS Icon
    • CSS Links
    • CSS Tables
    • CSS Display
    • CSS Maximum Width
    • CSS Position
    • z-index Property
  • JavaScript Tutorial
    • What is JavaScript
    • JS Syntax
    • JS Variables
    • JS Data Types
    • JS Operators
    • JS Control Flow - IF
    • JS Control Flow - S...
    • JS Control Flow - Loop
    • JS Function
    • JS Object Methods
    • JS Anonymous Funct...
    • JS Recursive Function
    • JS Default Parameters
    • JS this Keyword
    • What is an Array in...
    • What are JavaScript...
    • Error Handling in J...
    • DOM Selection in Ja...
    • DOM Traversal in Ja...
    • Manipulating Elemen...
    • Event Handling in J...
    • JavaScript Event Li...
    • JavaScript Event Pr...
    • Form Handling in Ja...
    • Dynamic Styling in ...
    • JavaScript DOM Elem...
    • Window Object in Ja...
    • What is Local Storage?
    • Regular Expressions...
  • Jquery Tutorial
    • What is jQuery?
    • Benefits of using j...
    • Include jQuery
    • Selectors.
    • Methods.
    • The $ symbol and sh...
    • Selecting elements
    • Getting and setting...
    • Adding and removing...
    • Modifying CSS and c...
    • Binding and Unbindi...
    • Common events: clic...
    • Event delegation
    • Using .on() for dyn...
    • Showing and hiding ...
    • Fading elements in ...
    • Sliding elements up...
    • .animate()
    • Understanding AJAX
    • .ajax()
    • .load(), .get(), .p...
    • Handling responses ...
    • Parent
    • Chlid
    • Siblings
    • Filtering Elements
    • Using find
    • Selecting form elem...
    • Getting form values
    • Setting form values
    • Form validation
    • Handling form submi...
    • jQuery plugins
    • Sliders plugins
    • $.each()
    • $.trim()
    • $.extend()
    • Data attributes
    • Debugging jQuery code
  • Bootstrap 4
    • What is Bootstrap
    • Benefits of using
    • Setting up
    • Container
    • Row and Column
    • Grid Classes
    • Breakpoints
    • Offsetting Columns
    • Column Ordering
    • Basic Typography
    • Text Alignment
    • Text colors
    • Backgrounds
    • Display
    • Font Size Utilities
    • Buttons
    • Navs and Navbar
    • Forms
    • Cards
    • Alerts
    • Badges
    • Progress Bars
    • Margin
    • Padding
    • Sizing
    • Flexbox
    • Dropdowns
    • Modals
    • Tooltips
    • Popovers
    • Collapse
    • Carousel
    • Images
    • Tables
    • Jumbotron
    • Media Object
  • Git
    • Understanding Versi...
    • Download and Instal...
    • Git Configure
    • Git Initialize
    • Add Changes to Staging
    • Commit Changes
    • Branching
    • Merging
    • Remote Repository
    • Understanding Git C...
    • Stashing Changes
    • Viewing Commit History
    • Undoing Changes
  • Ajax Tutorial
    • Ajax Fundamentals
    • Ajax Working
    • XMLHttpRequest Fetch
    • Synchronous vs Asyn...
    • Ajax Advantages
    • Ajax Disadvantages
    • $.ajax() method
    • Ajax GET request
    • Ajax POST Request
    • Json Response
    • Ajax Errors
    • Ajax Form
  • React Tutorial
    • What is React? Begi...
    • React Environment S...
    • React Fundamentals:...
    • Functional vs Class...
    • Props in React Expl...
    • State and setState ...
    • React Event Handling
    • React Conditional R...
    • React Lists and Keys
    • Styling in React In...
    • Styling in React Us...
    • Styling in React Us...
    • Tailwind CSS with R...
    • Tailwind vs CSS Mod...
    • React Hooks
    • React useState Hook
    • React useEffect Hook
    • React useRef Hook
    • React useContext Hook
    • React useReducer Hook
    • Custom Hooks in React
    • React Router – In...
    • Installing React Ro...
    • React Router – Ro...
    • React Router – Ne...
    • React Router URL Pa...
    • React Router Protec...
    • React Router Redire...
    • State Management in...
    • Redux State Managem...
    • Redux Toolkit Expla...
    • Redux Toolkit vs Re...
    • Controlled vs Uncon...
    • Handling Form Input...
    • API Integration in ...
    • Axios in React – ...
    • Handling Loading an...
    • Async Await in Java...
    • Displaying API Data...
    • CRUD Operations in ...
    • React Performance O...
    • React Performance O...
  • Tailwind
    • Introduction to Tai...
    • Utility-First CSS E...
    • Tailwind CSS vs Boo...
    • When and Why to Use...
    • Real-World Use Case...
    • Tailwind CSS Instal...
    • Installing Tailwind...
    • Tailwind CSS with V...
    • Setting Up Tailwind...
    • Install Tailwind CS...
    • Tailwind CSS Colors...
    • Tailwind CSS Backgr...
    • Tailwind CSS Paddin...
    • Tailwind CSS Margin...
    • Tailwind CSS Width ...
    • Tailwind CSS Height...
    • Tailwind CSS Border...
    • Tailwind CSS Border...
    • Tailwind CSS Text S...
    • Tailwind CSS Box Sh...
    • Tailwind CSS Opacit...
    • Tailwind CSS Cursor...
    • Tailwind CSS Overfl...
    • Tailwind CSS Font S...
    • Tailwind CSS Font W...
    • Tailwind CSS Text A...
    • Tailwind CSS Line H...
    • Tailwind CSS Letter...
    • Tailwind CSS Text T...
    • How to Use Google F...
    • Flexbox with Tailwi...
    • Justify Content in ...
    • Align Items in Tail...
    • Flex Direction in T...
    • Gap in Tailwind CSS...
    • Flexbox with Tailwi...
    • Grid System in Tail...
    • Grid System in Tail...
    • Responsive Design i...
    • Positioning & Z-Ind...
    • Background Colors i...
    • Background Images i...
    • Gradients in Tailwi...
    • Image Object-Fit in...
    • Image Overlay Effec...
    • Buttons in Tailwind...
    • Hover & Focus State...
    • Buttons and Forms i...
    • Cards and Sections ...
    • Navbar and Footer D...
Backend
  • PHP Tutorial
    • PHP Introduction
    • PHP Installation
    • PHP Syntax
    • PHP Comments
    • PHP Variable
    • PHP Echo
    • PHP Data Types
    • PHP Strings
    • PHP Constant
    • PHP Maths
    • PHP Number
    • PHP Operators
    • PHP if else & if el...
    • PHP Switch
    • PHP Loops
    • PHP Functions
    • PHP Array
    • PHP OOps
    • PHP Class & Object
    • PHP Constructor
    • PHP Destructor
    • PHP Access Modfiers
    • PHP Inheritance
    • PHP Final Keyword
    • PHP Class Constant
    • PHP Abstract Class
    • PHP Superglobals
    • PHP Regular Expression
    • PHP Interfaces
    • PHP Static Method
    • PHP Static Properties
    • PHP Namespace
    • PHP Iterable
    • PHP Form Introduction
    • PHP Form Validation
    • PHP Complete Form
    • PHP Date and Time
    • PHP Include Files
    • PHP - Files & I/O
    • File Upload
    • PHP Cookies
    • PHP SESSION
    • PHP Filters
    • PHP Callback Functions
    • PHP JSON
    • PHP AND Exceptions
    • PHP Connect database
  • PHP Functions
    • strlen
    • strtoupper
    • strtolower
    • ucfirst
    • ucwords
    • substr
    • str_replace
    • strpos
    • trim in php
    • explode
    • implode
    • count in php
    • array_merge
    • array_push
    • array_pop
    • array_shift
    • array_unshift
    • in_array
    • array_keys
    • array_values
    • array_filter
    • array_map
    • sort
    • asort
    • ksort
    • abs
    • round
    • ceil
    • floor
    • rand
    • mt_rand
    • max
    • min
    • pow
    • sqrt
    • date
    • time
    • strtotime
    • mktime
    • date_diff
    • getdate
    • fopen
    • fread
    • fwrite
    • fclose
    • file_get_contents
    • file_put_contents
    • file_exists
    • unlink
    • filesize
    • is_readable
    • is_writable
    • urlencode
    • urldecode
    • parse_url
    • http_build_query
    • isset
    • empty
    • is_numeric
    • is_array
    • is_string
    • filter_var
    • htmlspecialchars
    • md5
    • sha1
    • password_hash
    • password_verify
    • die
    • exit
    • var_dump
    • print_r
    • include
    • require
    • json_encode
    • json_decode
    • sleep
  • PHP and MySQL Functions
    • mysqli_connect
    • mysqli_select_db
    • mysqli_query
    • mysqli_prepare
    • mysqli_stmt_execute
    • mysqli_multi_query
    • mysqli_fetch_assoc
    • mysqli_fetch_array
    • mysqli_fetch_row
    • mysqli_fetch_object
    • mysqli_num_rows
    • mysqli_real_escape_...
    • mysqli_insert_id
    • mysqli_affected_rows
    • mysqli_error
    • mysqli_close
    • mysqli_commit
    • mysqli_rollback
  • Python Tutorial
    • What is Python?
    • Install Python on W...
    • Install Python on L...
    • Install Python on m...
    • IDE Setup
    • Python syntax
    • Python Comments
    • Python Indentation
    • Python Variables
    • Python Data Types
    • Python Numeric
    • Python Boolean
    • Python String
    • Python List
    • Python Tuple
    • Python Range
    • Python Dictionary
    • Python Arithmetic O...
    • Python Assignment O...
    • Python Comparison O...
    • Python Logical Oper...
    • Python Bitwise Oper...
    • Python if condition
    • Python if else cond...
    • Python For Loop
    • Python While Loop
    • Python break, conti...
  • MYSQL
    • SQL Introduction
    • Syntax
    • Select statement
    • Select Distinct
    • WHERE Clause
    • Order By
    • SQL AND Operator
    • SQL OR Operator
    • SQL NOT Operator
    • SQL LIKE
    • SQL IN
    • SQL BETWEEN
    • SQL INSERT INTO
    • SQL NULL Values
    • SQL UPDATE
    • SQL DELETE
    • SQL TOP, LIMIT, FET...
    • SQL MIN() and MAX()...
    • SQL COUNT() Function
    • SQL SUM()
    • SQL AVG()
    • SQL Aliases
    • SQL JOIN
    • SQL INNER JOIN
    • SQL LEFT JOIN
    • SQL RIGHT JOIN
    • SQL FULL OUTER JOIN
    • SQL Self Join
    • SQL UNION
    • SQL GROUP BY
    • SQL HAVING
    • SQL EXISTS
    • SQL ANY and ALL
    • SQL SELECT INTO
    • SQL INSERT INTO SELECT
    • SQL CASE
    • SQL NULL Functions
    • SQL Stored Procedures
    • SQL Comments
    • SQL Operators
    • SQL CREATE DATABASE
    • SQL DROP DATABASE
    • SQL BACKUP DATABASE
    • SQL CREATE TABLE
    • SQL DROP TABLE
    • SQL ALTER TABLE
    • SQL Constraints
    • SQL NOT NULL
    • SQL UNIQUE Constraint
    • SQL PRIMARY KEY
    • SQL FOREIGN KEY
    • SQL CHECK Constraint
    • SQL CREATE INDEX
    • SQL AUTO INCREMENT
    • SQL Dates
    • SQL Views
    • SQL Injection
    • SQL Hosting
    • SQL Data Types
  • Node Js
    • What is Node.js?
    • Why use Node.js?
    • Installing Node.js
    • First Node.js progr...
    • Event Loop
    • Understanding npm
    • What are Modules?
    • fs (File System)
    • Http Module
    • Path Module
    • Creating custom mod...
    • Exporting and impor...
    • Setting up a basic ...
    • Handling requests a...
    • Serving HTML
    • Serving CSS
    • Serving JavaScript
  • Python MySQL
    • Database Connection
    • Table Creation
    • Insert Query
    • Select Query
    • Update Query
    • Delete Query
    • Where Clause Query
    • Limit Clause Query
    • Join Tables
    • Order By Query
    • Group By Query
    • Aggregate Functions
    • Parameterized Query
  • Java Tutorials
    • Java Introduction
    • Java Installation
    • Java Syntax
    • Java Comments
    • Java Variables
    • Java DataTypes
    • Java Operators
    • Java Conditionals
    • Java Looping
    • Java Arrays
    • Java Methods
    • Java Classes
    • Java Objects
    • Java Constructors
    • Java Inheritance
    • Java Polymorphism
    • Java Encapsulation
    • Java Abstraction
    • Java Exception
    • Java Interfaces
    • Java File Handling
    • Java Threads
    • Java Access Modifiers
    • Java Static Keyword
    • Java Final Keyword
    • Java Nested Class
    • Java Synchronization
Interviews
  • PHP Interviews
    • What is PHP?
    • What does PHP stand...
    • PHP Advantages
    • Difference between ...
    • Start a PHP script?
    • Commenting in PHP
    • Variable in PHP
    • Different types of ...
    • Different types of ...
    • Array in PHP
    • Difference between ...
    • Retrieve data from ...
    • PHP handle errors
    • Sessions in PHP
    • PHP Cookie
    • What are the main f...
    • What are the differ...
    • What are the differ...
  • Java Interview Questions
    • Java Basics – Wha...
    • What is the differe...
    • What are the OOP co...
    • Why is the main met...
    • What are the differ...
    • What is the differe...
  • React Interviews
    • What is React.js
    • Help In Interviews
    • Features of React
    • What is JSX
    • React's Virtual DOM
    • State and Props
    • React handle data b...
    • React Component
    • setState() method.
    • Controlled Components
    • Lifecycle Methods
    • Significance of keys
    • What are the differ...
  • Laravel Interviews
    • What is Laravel?
    • What are the key fe...
    • Explain the concept...
    • What is a controlle...
    • What is Blade templ...
    • How does Eloquent O...
    • Explain the concept...
    • What are middleware...
    • How do you create a...
    • What is CSRF protec...
    • What is the purpose...
    • What is the purpose...
    • Explain the concept...
    • How do you create a...
    • What is the purpose...
    • How do you define r...
    • What are named rout...
    • Explain the use of ...
    • What is the purpose...
    • What are service pr...
  • SQL Interviews
    • What is SQL?
    • What are the differ...
    • What is the differe...
    • What is a primary key?
    • What is a foreign key?
    • What are the differ...
    • What is the differe...
    • What is the use of ...
    • What is the differe...
    • What is an index in...
    • What types of index...
    • What is a subquery?
    • How do you use the ...
    • How can you find th...
    • Explain the use of ...
    • What is a view?
    • What are the limita...
    • Write a query to fe...
    • Write a query to fe...
    • Write a query to co...
    • Write a query to fe...
    • Write a query to fe...
    • Write a query to fi...
    • Write a query to fe...
    • Write a query to re...
    • Write a query to ge...
    • Write a query to ge...
    • Write a query to li...
    • Write a query to fi...
    • Write a query to fi...
    • Write a query to ge...
    • Write a query to fi...
    • Write a query to co...
    • Write a query to fi...
    • Write a query to li...
    • Write a query to fe...
    • Write a query to fi...
    • Write a query to fe...
    • Write a query to ge...
    • Write a query to co...
    • Write a query to fe...
  • JavaScript Interview Questions
    • What Exactly is Jav...
    • What are the data t...
    • What is the differe...
    • JavaScript double e...
    • What is a Closure i...
    • What is Hoisting in...
    • Understanding "this...
    • What Are JavaScript...
    • Null vs Undefined i...
    • How Does JavaScript...
    • What is a Promise i...
    • Async/Await in Java...
    • Event Delegation in...
    • JavaScript Modules ...
    • How to Prevent a Fu...
    • JavaScript Intervie...
    • JavaScript Intervie...
    • What is bind() in J...
    • Event Bubbling vs. ...
    • Deep Copy vs Shallo...
    • What is the new Key...
PHP Frameworks
  • Laravel
    • Laravel Topics
    • Laravel 7 Installation
    • Install laravel 8
    • Laravel 8 Routing
    • Laravel Controllers
    • Views and Blade lar...
    • Database and Eloque...
    • Authentication and ...
    • CSRF Protection
    • Laravel Model
    • Database: Query Bui...
Routine Use
  • Linux
    • How to Delete a Fil...
    • Install lemp in ubu...
    • How to check packag...
    • Navigating the File...
    • Managing Files and ...
    • Viewing and Editing...
    • Managing Processes ...
    • Scheduling Tasks wi...
    • Disk Usage Analysis...
    • File and Directory ...
Blogs
  • Blogs
    • Free Hosting on AWS...
    • What is SEO?
    • Zoho Free Mail
    • Speed Up Your Appli...
    • What is a JavaScrip...
    • Laravel vs Lumen: T...
    • MySQL vs PostgreSQL...
    • Automate Free MySQL...
    • How to Use Google A...
    • What is n8n?
    • Cloud Platform Comp...
    • Top Common Mistakes...
    • PHP 8.5: The Pipeli...
    • Google Antigravity ...
    • How to Optimize Que...
    • React vs Angular vs...
    • Base44: Features, P...
    • Difference Between ...
    • HTTP Status Codes E...
    • Build Native Mobile...
    • Top 10 JavaScript F...
    • JIRA, Waterfall, an...
    • WebSockets in Moder...
    • A Complete Real-Wor...
    • Why Developers Shou...
    • Service-Based Compa...
    • Bootstrap vs Tailwi...
    • Direct Prompt vs St...
    • Top 25 SEO HTML Tag...
    • Docker Commands Che...
    • Authentication vs A...
    • Top AI Portals in 2...
    • What is Replit? Com...
    • Laravel 13 Released...