Its Going to be Interview preparation course for frontend Devs
@vishwas552 күн бұрын
Why not improve current existing namaste system design course instead of buying new one???
@ayushbansal69532 күн бұрын
Is it a new course? A mentorship program? Or maybe something even bigger 🤔🤔? Can't wait!
@artofcoding20102 күн бұрын
New courses 🤔??
@lennonfernandes16964 күн бұрын
What concepts to learn to apply for these companies
@undisputedlegend75684 күн бұрын
How can i attend this mock interview? Can anyone help me with this? I am so eager to attend this coding interviews.
@chandrasekharmandapalli91817 күн бұрын
which site is best to refer for salary checking ( this will be very helpful to mantion salary range to HR )
@RAKSHIT-g2o11 күн бұрын
big fan of johny and chirag sir both are legend in their field
@akshayaj934211 күн бұрын
Thanks!
@engineerchiragКүн бұрын
Thanks. It means a lot ❤️
@diwyanshukanthwal866911 күн бұрын
Hi I am a frontend dev currently. What skills would make a senior dev I am also thinking to become full stack
@badamadevi949712 күн бұрын
Basically......
@DeepakKumar-mn7sp12 күн бұрын
starts at 3:54
@HarishMusic13 күн бұрын
Yrr knowledge h but av tk kuchh nhi mila
@Piyush-xv1bb17 күн бұрын
i will reject mitesh
@archanoidtalks939320 күн бұрын
can we do dsa in cpp for frontend rounds ?
@archanoidtalks939320 күн бұрын
can we do dsa in language other than JS such as Cpp ?
@surajjha450120 күн бұрын
I have entolled for the courses. But what actually shown and what actually content is complete different. Resources are very less.
@engineerchirag20 күн бұрын
Which course have you enrolled into?
@alphagaming921220 күн бұрын
Why do Indians think everyone is Indian.. 😡 my reaction opening an interesting video and then speaking what I don't use
@udaykulkarni563922 күн бұрын
What was the dude even trying to do???
@udaykulkarni563924 күн бұрын
I love how this guy is so patient.. i just couldnt take the way she was coding and testing stuff left and right.. i started skipping in first 10 mins itself. Kudos to you dude..
@udaykulkarni563924 күн бұрын
This dude KNOWS how to interview 🙌🏼 i would love this dude to interview me.. wouldnt feel bad even if i get rejected.. good job man.
@souravsinghnegi77524 күн бұрын
6:00
@SumitKumar-no3nt25 күн бұрын
intelligent girl , ese kehte hain knowledge
@SumitKumar-no3nt25 күн бұрын
ese kehte interview questions great
@SumitKumar-no3nt25 күн бұрын
ya to ye ladki nervous h ya kuch aata he nhi, yrrr 2 year experience kya kr rhi h madam pachho jese coding, I think she is 4 days experience html css he nhi aata
@godessGOAT27 күн бұрын
from where can i get more questions like this to practice?
@Bifimax28 күн бұрын
It would be better if you all focused on discussing solutions instead of just highlighting the issues that everyone already knows.
@mehulsatardekar8985Ай бұрын
my solution const obj = { A: (a, b, c) => a + b + c, B: (a, b, c) => a - b - c, C: (a, b, c) => a * b * c, D: { E: (a, b, c) => a + b + c, }, }; const compute = (a, b, c) => { const process = (inputObj) => { const emptyObj = {}; for ([key, value] of Object.entries(inputObj)) { if (typeof value === "object") { // process() emptyObj[key] = process(value); //process(obj[key](a,b,c)) } else if (typeof value === "function") { emptyObj[key] = value(a, b, c); } } return emptyObj }; return process(obj); }; console.log(compute(1, 1, 1));
@subratasaha0903Ай бұрын
great video Chirag Sir. Please create more videos on JavaScript. Please make a video on Clouser.
@satya4866Ай бұрын
This is good.
@InfoPanel7902Ай бұрын
Mai to difference janne hi aaya tha, not this
@DeepikaYadav-i4gАй бұрын
Sir could you give all these question in a pdf file or somewhere so that anyone can practice these
@prakashpotlapadu2493Ай бұрын
I was asked dynamic programming question in paypal FE engineer interview 😒. You also need to have luck along with hard work
@gullyprogrammerАй бұрын
Pro tip: Watch at 1.5x
@_CMSK_Ай бұрын
Short and sweet answer ❤
@kunalmewara.Ай бұрын
It can be done it this way, if I am not wrong @engineerchirag function compute() { let amount = 0; this.croce = function(num) { let total = num * 10000000; amount += total; return this } this.lakhs = function(num) { let total = num * 100000; amount += total; return this; } this.thousand = function(num) { let total = num * 1000; amount += total; return this; } this.value = function() { return amount; } return this; } console.log(compute().lakhs(15).croce(5).croce(2).lakhs(20).thousand(15).croce(7).value());
@MrK-nb7xrАй бұрын
13:01 is non other then flipkart, I work as a contract employee, I have seen this their
@jaihindkushwaha6916Ай бұрын
mind blowing
@ashishjha2065Ай бұрын
Sir any prerequisite required for this playlist, please reply
@nestorochoaАй бұрын
Great video! but what's Pushpa?
@mirijanyavo6532Ай бұрын
Kinda trivial question: const compute = (object, ...args) => Object.entries(object).reduce((r, [k, v]) => ((r[k] = typeof v === "function" ? v(...args) : compute(v, ...args)), r), {}); or: const compute = (object, ...args) => Object.fromEntries(Object.entries(object).map(([k, v]) => [k, typeof v === "function" ? v(...args) : compute(v, ...args)])); Array reduce similar to JS: const reduce = (...args) => arr => { const reducer = args[0]; if (typeof reducer !== "function") throw new TypeError(`${typeof reducer} is not a function`); if (!arr.length && args.length < 2) throw new TypeError("Reduce of empty array with no initial value"); let accumulated = args.length < 2 ? arr[0] : args[1]; const startIndex = args.length < 2 ? 1 : 0; for (let i = startIndex; i < arr.length; i++) { accumulated = reducer(accumulated, arr[i], i, arr); } return accumulated; }; const add = (a, b) => a + b; // multiple elements + no initial console.log([1, 2, 3, 4].reduce(add)); // 10 console.log(reduce(add)([1, 2, 3, 4])); // 10 // multiple elements + initial console.log([1, 2, 3, 4].reduce(add, 5)); // 15 console.log(reduce(add, 5)([1, 2, 3, 4])); // 15 // 1 element + initial console.log([1].reduce(add, 2)); // 3 console.log(reduce(add, 2)([1])); // 3 // 0 elements + initial console.log([].reduce(add, 0)); // 0 console.log(reduce(add, 0)([])); // 0 // 1 element + no initial console.log([1].reduce(add)); // 1 console.log(reduce(add)([1])); // 1 // no elements + `undefined` passed in as literal console.log([].reduce(add, undefined)); // undefined console.log(reduce(add, undefined)([])); // undefined // no elements + no initial // console.log([].reduce(add)); // TypeError "Reduce of empty array with no initial value" // console.log(reduce(add)([])); // TypeError // Reducer not function // console.log([].reduce({}, 5)); // TypeError "object is not a function" // console.log(reduce({}, 5)([])); // TypeError
@tanishqsinghai3284Ай бұрын
how did you removed css to get skeleton structure?