JavaScript Interview Preparation Simplified

➊ Common Expectations

➊.➀ Behavioural Skills

➀ Good Etiquette
➁ Ability to work in a Team
➂ Ability to provide solutions
➃ Proactivity in detecting issues
➄ Ability to work in diverse situations
➅ Time management
➆ Handling criticism
➇ Handling escalations
➊.➁ Technical Skills

➀ Language Syntax
➁ Key features in JavaScript
➂ Frameworks/Libraries
➃ Portfolio/Real Projects
➋ Language Syntax

➀ Variable Naming & Declaration
➁ Data Types
➂ Expression, Statement & Block
➃ Operators
➄ Conditional Statements
➅ Looping Statements
➆ Functions
➇ Strings
➈ Arrays
➉ Object Literals
➀➀ Asynchronous
➀➁ OOP
➌ Important Features

➌.➀ Variable Naming & Declaration

➀ var, let, const
➁ Naming Rule
➂ Default value

➌.➁ Data Types, Special Values

➀ Several Types
➁ Type Coercion
➂ typeof, instanceof
➃ undefined, null
➄ NaN, Infinity
➅ How JS stores numbers?
➌.➂ Expression, Statement & Block

➀ Variable Scope
➁ Variable Hoisting
➂ Keywords

➌.➃ Operators

➀ Arithmetic
➁ Comparison
➂ Short Circuit (&& and ||)
➃ Nullish Coalescing (??)
➄ Optional Chaining (?.)
➅ Ternary (?:)
➆ Operator Precedence
➌.➄ Conditional Statements

➀ if
➁ if...else
➂ if...else if...
➃ switch case

➌.➅ Looping Statements

➀ while
➁ do...while
➂ for
➌.➆ Functions

➀ Declaration & Invocation
➁ Function Parameter vs Arguments
➂ Default Function Parameters
➃ Using "arguments"
➄ Arrow Function
➅ Callback Function
➆ Higher Order Function
➇ Variadic Function
➈ IIFE
➉ Closure
➌.➇ Strings

➀ How String operates
➁ Creating a String
➂ Getting a character and its code
➃ Getting a substring
➄ String concatenation
➅ String Template Literal (``)
➆ String's utility methods
➇ Using RegEx
➌.➈ Arrays

➀ Creating an Array
➁ array.length
➂ Finding elements/index of element
➃ Looping through array (HOFs, for...of loop)
➄ Inserting/Deleting Element(s)
➅ slice vs splice
➆ Spread vs Rest Param
➇ Destructuring Assignment
➌.➉ Object Literals

➀ Creating Object through literals
➁ JSON vs Object Literals
➂ Getting Keys, Values
➃ Looping through Object entries (for...in)
➄ Spread vs Rest Param
➅ Destructuring Assignment
➌.➀➀ Asynchronous

➀ setTimeout, setInterval, requestAnimationFrame
➁ Callback Functions
➂ Promise API
➃ asynch await
➌.➀➁ OOP

➀ new operator
➁ Constructor function and Object creation
➂ getter and setter
➃ Class
➄ use of this
➅ prototype object
➆ Object Inheritance in JS
➇ Utility methods of Object class
➌.➀➂ Browser APIs

⮑ DOM API
⮑ Fetch API
⮑ Graphics
⮑ Canvas API
⮑ WebGL
⮑ Rich Media
⮑ Web Audio API
⮑ Media Streams API
⮑ Device
⮑ Notifications API
⮑ Vibration API
⮑ Client-side Storage
⮑ Web Storage API
⮑ IndexedDB API
➌.➀➃ Others

➀ Set class
➁ Map class
➂ Date class
➃ Utility Math functions
➄ Iterator
➅ Generator
End of 🧵

Are you interested in Interview Preparation guide? I will be sharing those regularly on JavaScript, React, Web Development, Backend Development, Full-stack Development.

To never miss any, Follow me ✅

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Swapna Kumar Panda 

Swapna Kumar Panda  Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @swapnakpanda

Feb 13
🎨 140 Color Names in HTML - Cheat Sheet

To direct access it in HQ, find the link in next tweet.
. Image
🏙 High Quality Infographics

⬘ I have created a repository in GitHub. This will contain most of the infographics I create in HD Quality.

⬖ To never miss any, add this repo to your "Watch" list.

⬙ To encourage me, give a ⭐️ to this repo.

Direct Link:
github.com/swapnakpanda/I…
⚠️ Repost Notice ⚠️

⬘ I shared this cheat sheet 5 days back where I promised to share the HQ link in DMs.

⬖ I couldn't keep my promise because Twitter barred me from making too many DMs.

⬙ So, here I am sharing the link directly. Hope it will benefit all.
Read 5 tweets
Feb 12
JavaScript Interview Questions

Series: 2️⃣
Level: Beginner
Topics:

➊ Basics about Arrays
➋ Array Properties
➌ Array Methods
➍ Looping through Arrays
➎ Array related Operators
➏ Common Array Operations
➐ Comparison of Terms
🚥 Disclaimer

⬖ The questions covered here are mostly conceptual
⬘ I never claim only these type of questions are/should be asked during interviews
⬗ For interviews, you should have fundamentals strong. And you should be able to provide solutions to practical problems.
Read 20 tweets
Feb 11
JavaScript essentials for your React journey

➊ Basics

⇥ Variable Declaration
⇥ Variable Scope
⇥ Variable Hoisting
⇥ Functions
⇥ Arrow Functions
⇥ Callback Functions
⇥ Closure
⇥ Basic Operators
⇥ Array Literals
⇥ Object Literals
⇥ if, if...else
⇥ for, for...in, for...of, while, do...while
➋ Array.prototype Methods

⇥ forEach()
⇥ map()
⇥ reduce()
⇥ flat()
⇥ flatMap()
⇥ find()
⇥ filter()
⇥ slice()
⇥ splice()
⇥ push()
⇥ pop()
⇥ shift()
⇥ unshift()
⇥ some()
⇥ every()
Read 13 tweets
Feb 10
25 Utility Code for your next JavaScript Project

➊ Check if input is of number type
➋ Check if input value contains a number
➌ Check if input value is null or, undefined
➍ Check if input value is null or, empty string
➎ Check if input value is falsy
➏ Check if input is an Array
➐ Check if input is an Empty object
Read 11 tweets
Feb 9
Do you think it's peculiar?

parseInt(0.5); // => 0
parseInt(0.05); // => 0
parseInt(0.005); // => 0
parseInt(0.0005); // => 0
parseInt(0.00005); // => 0
parseInt(0.000005); // => 0
parseInt(0.0000005); // => 5

Here's why. A JavaScript 🧵
➊ What is parseInt?

parseInt is a function which

→ takes a "String" input
→ parses this input
→ returns the parsed "integer" value
➋ What if input is not a String?

If input is not a String, it's first converted to String and, then parsed.
Read 9 tweets
Feb 8
🎨 All (140) HTML Color Names

If you are interested in the HD quality of this cheat sheet,

✓ Like (❤️) this Tweet
✓ Follow me ✅
✓ Reply (💬) to this Tweet with a 👋
✓ Retweet (🔁) for more chances.

I will share you the direct link in DM. Image
🚥 Disclaimer

I have compiled these information with all sincerity. But in case you find any omissions or, wrong representations, please inform me.
🚏 Upcoming Twitter Space

📅 12-Feb-2022 (Saturday)
⏰ 07.30PM IST (02.00PM GMT)

⬘ Join me in this space to have a technical discussion around "Arrays and Functions in JavaScript".

⬙ Share among your circle if anyone is interested.

twitter.com/i/spaces/1dRJZ…
Read 4 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

:(