Is it me or the Tutorials in JavaScript are hard to understand?
Javascript is harder than HTML or CSS.
If itâs your first programming language(except HTML/CSS) it will be hard for sure.
yeah now, I mean itâs harder but jargons ainât explained well it feels like, were just shooting randomly on the tutorials.
Can you give an example? Some challenge step where jargons are hard to understand?
the part on iterating, nesting for loops, manipulating complex objects. well I finished those tasks from just the instructions. but, I donât get it I donât even know how I did it.
Well, this case is not unique.
Sometimes completing challenge is not enough to understand the concept, I can relate to that.
If that is the case, you can:
do your own research, âto google stuffâ is part of the job, important one
ask for help on this forum, I do it myself regularly and it is extremely useful
grab the code from the instructions and experiment with it
// here is one, why is it using increment?
// Basic JavaScript: Profile Lookup
function lookUpProfile(name, prop){
for (var i = 0; i < contacts.length; i++) {
if(contacts[i].firstName === name) {
return contacts[i][prop] || âNo such propertyâ;
}
}
return âNo such contactâ;
}
// Change these values to test your function
var data = lookUpProfile(âShirlockâ, âlastNAmeâ);
console.log(data);
Ok, thatâs a good question, but we need new topic for that.
You need:
go to this challenge step
press ask for help button
it will allow you to create your own thread; donât forget to describe your issue and questiions there
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.