Skip to content

Latest commit

Β 

History

History
35 lines (21 loc) Β· 1.7 KB

File metadata and controls

35 lines (21 loc) Β· 1.7 KB

JAVASCRIPT MOSTLY USED AND INTERVIEWED METHODS

This repository contains examples of the most commonly used JavaScript methods.
Each folder groups related methods with practical code samples and explanations.

The goal is to help beginners and developers learn, practice, and revise JavaScript essentials in a structured way.


πŸ“‚ Repository Structure

  • array-methods/ β†’ Covers methods like find, concat, join, splice, slice, indexOf, flat, some, every, sort, and more.
  • string-methods/ β†’ Common string methods like split, toUpperCase, toLowerCase, replace, includes, etc.
  • object-methods/ β†’ Methods for working with objects such as keys, values, entries, assign, and hasOwnProperty.
  • date-methods/ β†’ Useful date methods like getDate, getDay, getFullYear, setDate, and toISOString.
  • Math-methods/ β†’ Math operations including round, floor, ceil, random, max, and min.
  • DOM-methods/ β†’ Browser DOM methods like getElementById, querySelector, createElement, and event handling.

Table of Contents

  1. Array Methods
  2. String Methods
  3. Object Methods
  4. Date Methods
  5. Math Methods
  6. DOM Methods