Be one of the first to try Doc! - a new way to get quick, reliable answers to your medical questions.
Weโre still in Beta, and your feedback helps us grow.
Click the link to download the app and start using it today ๐
https://t.co/zeo0oPRD1f
@ConvertedCode_1 @iamAbiodunAA Tiki taka is a very interesting syle of play...
It requires a very high form of coordination..
It's like saying, I don't enjoy thriller or something because there's no "action" all the time..
Everyone has what they enjoy.. It's not cool to just say "you cannot enjoy tiki-taka".
@dejisnow_dev@DevTobs This undefined is something that's caused by a behaviour in js known as hoisting and is peculiar to functions, var (and prolly some other ones).. if that variable was declared with let or const, it'll return a reference error, because they don't allow for hoisting...
@dejisnow_dev@DevTobs Just trying to shed a little more light on this. Yes, Javascript reads code synchronously(from up to bottom). But because of that behaviour it's supposed to throw a reference error(because it's referencing a before a is declared)..
@czarify And sorry, why do you assume software developers just use tools?...
Do you believe there are competent software devs? Or does competency in software development mean you can use a tool better than most people. Cause to me it's knowing the fundamental technological principles.
@czarify Yeah, you can stand on your point and I'm not trying to change it or that you shouldn't say what you think. Some places point out software development to be a subset of software engineering. Software engineering deals with the whole system of an application.
@czarify And let me ask.. A person who knows the principles of all these technologies but writes front/back end applications are they developers(because they use these tools) or engineers(because they know the ground knowledge)
@czarify And those that write in java and the rest IT students, because all these were still created by assembly (I may be wrong, but you see the point)
@DaveyHert NaN... when the function runs
Sum is initialised but not assigned a value.. so it's undefined, when you start looping
sum = sum( which is undefined ) + 5 = NaN
sum = sum( which is NaN ) + 10 = NaN
And so on it goes...
So. Sum becomes NaN which is then returned