Javascript Challenges - Return 3 Times

preview_player
Показать описание
Javascript Challenges - Return 3 Times

Source Code

Project Based Web Development Courses

Products I Use:

Books I Recommend:

Disclosure: This video is not sponsored. Some links above are affiliate links, and l may earn a small commission from any purchases at no additional cost to you. Thank you for supporting my channel!
Рекомендации по теме
Комментарии
Автор

These are very useful lessons. Please continue doing it.

andreiarpenti
Автор

Really nice man! Thanks for this valuable content for free, I appreciate it, you explain really well the topics and love your courses! Keep doing and success!

lucassilverio
Автор

Here is an alternate solution that also works (I have used fat arrow functions and more of the ES6 syntax) -
const result = (a, b) => (c, d) => (e, f) => {
return a * c * e + b * d * f;
console.log(a * c * e + b * d * f);
};

Happy-pm
Автор

Exactly what we need
More js nugets & chalenges please
Plus could you solf some hacker rank proplems using js

abelmarkos
Автор

const f1 = (a, b) => (c, d) => (e, f) => (a*c*e) + (b*d*f)

f1(1, 2)(2, 4)(3, 6)

maheshr
Автор

Sir, i really love your videos and learn REACT with your tutorial. I have a request, Could you please make video on next js ?

HarjinderSingh-tcfc
Автор

That was an informative challenge video. Thanks and keep making such awesome videos.

akhiltheloquacioussoul
Автор

const example = (a, b)=>(c, d)=>(e, f)=>(a*c*e+b*d*f)

songdexue
Автор

Thank u sir
Please make a video on promises n async await🙏🏻🙏🏻🙏🏻

anshurawat
Автор

This is a very good series. It stimulates my thinking !

What is the extension you use in the video which shows the result immediately after a piece of code ?

raymerci
Автор

Can you prepare a form validation for every scenarios like
checkbox (for Single box selected means how to validate),
radio button,
All Check box select,
All Radio Button Select

AntonyAllocious
Автор

Great video, John!
Any updates on the NodeJs course?

rajatetc
Автор

can I know the extension that shows console log in vscode

SumitSarkar
Автор

what vscode plugin you using that can auto calculate console.log?

songdexue
Автор

@Coding Addict -- Should you have problem solving skills before learning any programming language. Please answer, i am stuck in this confusion and is not moving forward to my programming journey. I am looking forward to buy your course on udemy. please help

chandankapoor
Автор

How the value is evaluating and showing by side in VS code? is there any plugin for that?

mickymouse
Автор

Why do we have access to a and b inside of an anonymous function?

ljubisaknezevic
Автор

sir waiting for 2 nd part of node tutorial

nikhil_squats
Автор

Can someone tell me how to show the console results in the vscode?

timjobs