That’s what good teaching does. Thank you Kyle Simpson.
(5/5)
That’s what good teaching does. Thank you Kyle Simpson.
(5/5)
Array.prototype.last = function () {
if (this.length === 0) return -1;
return this[this.length - 1];
};
(4/5)
#JavaScript #DSA #LeetCode
Array.prototype.last = function () {
if (this.length === 0) return -1;
return this[this.length - 1];
};
(4/5)
#JavaScript #DSA #LeetCode
It came directly from reading You Don’t Know JS Yet: this & Object Prototypes by Kyle Simpson.
(3/5)
It came directly from reading You Don’t Know JS Yet: this & Object Prototypes by Kyle Simpson.
(3/5)
My immediate intuition was to use this, because the method is reused and invoked at the call site. Runtime-bound, call-site-dependent behavior fits perfectly here.
(2/5)
My immediate intuition was to use this, because the method is reused and invoked at the call site. Runtime-bound, call-site-dependent behavior fits perfectly here.
(2/5)
Next up: The Frontend Developer Path. Excited to see what’s coming!
(5/5)
#WebDevelopment #Frontend #HTML #CSS #LearningInPublic #BuildInPublic
Next up: The Frontend Developer Path. Excited to see what’s coming!
(5/5)
#WebDevelopment #Frontend #HTML #CSS #LearningInPublic #BuildInPublic
(4/5)
(4/5)
(3/5)
(3/5)
(2/5)
(2/5)
What books or resources helped you most when learning JavaScript?
(8/8)
#JavaScript #LearningInPublic #WebDev
What books or resources helped you most when learning JavaScript?
(8/8)
#JavaScript #LearningInPublic #WebDev
(7/8)
(7/8)
(6/8)
(6/8)
(5/8)
(5/8)
(4/8)
(4/8)
(3/8)
(3/8)
(2/8)
(2/8)
console.log("Database: " + soonDataBase[0]);
for (let i = 1; i < soonDataBase.length; i++)
{
console.log(" " + soonDataBase[i]);
}
(4/n)
console.log("Database: " + soonDataBase[0]);
for (let i = 1; i < soonDataBase.length; i++)
{
console.log(" " + soonDataBase[i]);
}
(4/n)
console.log("Back End: " + soonBackEnd[0]);
for (let i = 1; i < soonBackEnd.length; i++)
{
console.log(" " + soonBackEnd[i]);
}
console.log("");
(3/n)
console.log("Back End: " + soonBackEnd[0]);
for (let i = 1; i < soonBackEnd.length; i++)
{
console.log(" " + soonBackEnd[i]);
}
console.log("");
(3/n)
console.log("Front End: " + frontEnd[0]);
for (let i = 1; i < frontEnd.length; i++)
{
console.log(" " + frontEnd[i]);
}
console.log("");
(2/n)
console.log("Front End: " + frontEnd[0]);
for (let i = 1; i < frontEnd.length; i++)
{
console.log(" " + frontEnd[i]);
}
console.log("");
(2/n)