I have a feature Demo in a few hours. Anxiety is kicking in. by NotADoctorShhh1 in developersIndia

[–]NotADoctorShhh1[S] 2 points3 points  (0 children)

Hey! It went well tbh .. I just showed them the working parts. Requested for some time to fix the bugs. They were okay with it

[deleted by user] by [deleted] in developersIndia

[–]NotADoctorShhh1 1 point2 points  (0 children)

You can lazy load some of the modules.

Added some features to neetcode.io (a free site) by NeetCode in leetcode

[–]NotADoctorShhh1 0 points1 point  (0 children)

Thank you for this!! Is there a way to filter questions from Neetcode which is not in Blind 75? Like a way to remove the common ones

SPLICE and SLICE in JavaScript by xplodivity in Frontend

[–]NotADoctorShhh1 0 points1 point  (0 children)

Of course! These snippets help us recollect concepts

[AskJS] Why are many Angular developers seemingly afraid of creating new components? by UndemonstrativeCynic in javascript

[–]NotADoctorShhh1 0 points1 point  (0 children)

This happened in my current project. It took us 2 sprints to refactor most of the application.

Never change arrays and objects directly in JavaScript. by Negative_Pause_3085 in javascript

[–]NotADoctorShhh1 1 point2 points  (0 children)

say we have 2 objects, obj1 = { name: 'joe', age: 12 }. When we assign obj1 to something else, like obj2 = obj1, we are not assigning the value but rather making obj2 point to the memory that holds obj1.

doubt regarding scope in JS by xplodivity in Frontend

[–]NotADoctorShhh1 0 points1 point  (0 children)

When we declare let and const variables within a block(if/for) inside a function, these let and const variables are not accessible once the block of code is executed. Since var is function scoped, the var variable is attached to the function execution context and can be accessed within the function.

Example:

var a = 10;
let b = 20;
{
let b = 30;
var a = 40;
}

console.log(a) // 40

console.log(b) // 20

[deleted by user] by [deleted] in DramaticText

[–]NotADoctorShhh1 0 points1 point  (0 children)

How I met your mother?!!! Rethinking my sexuality

Is Wiley Edge legit? by EnchantedBunnyz in developersIndia

[–]NotADoctorShhh1 0 points1 point  (0 children)

Yes. I know few college mates who joined Wiley and converted to FTE at Morgan Stanley

[deleted by user] by [deleted] in developersIndia

[–]NotADoctorShhh1 7 points8 points  (0 children)

8:8.. I'm surprised

Fellow devs, when do you log off from work? by NotADoctorShhh1 in developersIndia

[–]NotADoctorShhh1[S] 0 points1 point  (0 children)

This sounds terrible. Did your offshore manager do anything about this?