In programming, an expression is something that returns a usable output value. We already know a lot about expressions and their principles of composition. Math operations (addition, subtraction, etc.) and string operations (concatenation) are all expressions:
1 + 5 * 3;
'Hex' + 'Let';
// Variables can be a part of an expression
rate * 5;
One feature of expressions is that they return a result that can be assigned to a variable or printed. For instance:
// Here the expression is 1 + 5
const sum = 1 + 5;
console.log(1 + 5);
But not any code can be an expression. The definition of a variable is a statement, it can't be part of an expression, and it will lead to an error:
// Pointless code that won't work
10 + const sum = 1 + 5;
Why is this important to know? You can combine expressions to get more and more complex behavior in the most unexpected places and the most surprising ways, as you will see. You will get a better understanding of how you can combine pieces of code to get the desired results.
Let's talk about functions. Is a function call an expression or not? We know that functions return results, which means that, yes, they are expressions. It leads to a lot of interesting possibilities. For example, we can call functions directly in math operations. This is how we can get the last character index in a word:
import { length } from 'hexlet-basics/string';
const name = 'JavaScript';
// Indexes count from zero
// Function call and subtraction combined!
const lastIndex = length(name) - 1;
console.log(lastIndex); // 9
This code has no new syntax. We've just combined what we already know. We could go even further:
console.log(length(name) - 1); // 9
All of this holds for any function, e.g. string functions:
import { length } from 'hexlet-basics/string';
const name = 'JavaScript';
// Interpolation
console.log(`Last char: ${name[length(name) - 1]}`);
// 'Last char: t'
Print the first and last letters of the sentence stored in the variable text
using this format:
First: N Last: t
Try to create only one variable you want to assign the text to before you print it. In this lesson, we're practicing building a compound expression.
If you've reached a deadlock it's time to ask your question in the «Discussions». How ask a question correctly:
Tests are designed so that they test the solution in different ways and against different data. Often the solution works with one kind of input data but doesn't work with others. Check the «Tests» tab to figure this out, you can find hints at the error output.
It's fine. 🙆 One task in programming can be solved in many different ways. If your code passed all tests, it complies with the task conditions.
In some rare cases, the solution may be adjusted to the tests, but this can be seen immediately.
It's hard to make educational materials that will suit everyone. We do our best but there is always something to improve. If you see a material that is not clear to you, describe the problem in “Discussions”. It will be great if you'll write unclear points in the question form. Usually, we need a few days for corrections.
By the way, you can participate in courses improvement. There is a link below to the lessons course code which you can edit right in your browser.
Your exercise will be checked with these tests:
1import { expectOutput } from 'hexlet-basics/tests';
2
3const expected = 'First: N\nLast: t';
4expectOutput(expected);
5
Teacher's solution will be available in: