JavaScript fundamentals
Theory: Chaining methods
Numbers have a method that converts them to a string:
Will the following code work, and if so, what will it print?
It's the first time we've seen several consecutive periods, but all of the above operations here are familiar. Everything happening in this code is a mix of language features we already know. This happens quite often in programming. Even if you don't know the syntax, you can try combining different approaches, and there's a good chance it'll work.
The easiest way to understand how this code works is to break the chain into separate operations:
These examples all do the same thing. We can perform operations sequentially, creating constants in between, or build a continuous chain of properties and methods. Computations in chains always go from left to right.
One more example:
You'll need a bit of mental effort for this code. It's important to understand that .toLowerCase() is applied to the result of the .toUpperCase() function. And toUpperCase() returns a string. Rookies often make mistakes with chains of methods; they forget to call them:
Following this idea, it's possible to build infinitely long (though, in this case, useless) chains:
_This trick won't work with functions because they are usually nested, f(f(f())), which complicates analysis. Yet this doesn't mean that you can't do it nicely - you can and should. Other languages implement it by composing functions or using a pipeline operator, which, incidentally, is starting to be used more and more in JavaScript: https://github.com/tc39/proposal-pipeline-operator.
Recommended programs
Completed
0 / 39

