HELLO FRIENDS!
Sorry for the second week in a row sending this to you on a Monday. I've got that whole marriage thing happening next weekend, and I launched my Udemy course today!!
Â
Web links of the week
XR: VR, AR, MR—What's the Difference?​
Pure Functional Programming
I've seen heaven. And it's written in JavaScript.
Google Poly
Â
Something that interested me this week
I'm later than usual in sending this out because:
1) I'm getting married on Saturday!
2) I am launching my Udemy course on JavaScript and React TODAY!
My time has been completely consumed with these two things, and I'm SO excited that this week is finally here.
NOW: My JavaScript and React Udemy course is LIVE!
The link above gets you the course for free! But, there's a limited number of slots (a girl's gotta eat), so run fast!
If you end up not getting a free one, you can still get it for $10
with code IWASLATE.Â
I promise I won't advertise my stuff too much. I know that's annoying. I'm just really excited about this one! If you do end up taking it,
please leave a review, and let me know what you think!!
Â
Interview question of the week
Last week, I had you write a multiply function in JavaScript which will produce the following outputs when invoked:
console.log(mul(2)(3)(4)); // output: 24Â
console.log(mul(4)(3)(4)); // output: 48
Here's my solution:
function mul(a) {
return function(b) {
return function(c) {
return a*b*c;
}
};
}
Here's a similar question for you this week:
Write a function addg that adds from many invocations until it sees an empty invocation.
Â
addg() // undefined
addg(2)() // 2
addg(2)(7)() // 9
addg(3)(4)(0)() // 7
addg(1)(2)(4)(8)() // 15
Cool things from around the internet
Beautiful Vector Illustration by FUGSTRATOR
Iris Build Log
Galaxiphabet Series Letter O
8 Inexpensive Materials That Can Transform an Interio​r
Â
Joke
Why has the world's fastest land animal never been married?
Because he's a cheetah.
Â
That's all for now friends! Be safe, make good choices, and enjoy the week!
cassidoo