diff --git a/modules/10-basics/45-testing/en/README.md b/modules/10-basics/45-testing/en/README.md index 14404b68..98985d51 100644 --- a/modules/10-basics/45-testing/en/README.md +++ b/modules/10-basics/45-testing/en/README.md @@ -24,8 +24,8 @@ One of your tasks in the following lessons will be to write a function that perf "ello, World!" -In addition to our tests, it's very useful to experiment with code in the [browser console](https://developer.mozilla.org/en-US/docs/Tools/Browser_Console). When something isn't clear to you or you want to experiment with code, feel free to do all of this in the console. Ideally, it's best to execute all the code given in the lessons on your own. In addition to the console, you can also use [repl.it](https://repl.it/languages/javascript). +In addition to our tests, it's very useful to experiment with code in the [browser console](https://developer.mozilla.org/en-US/docs/Tools/Browser_Console). When something isn't clear to you, or you want to experiment with code, feel free to do all of this in the console. Ideally, it's best to execute all the code given in the lessons on your own. In addition to the console, you can also use [repl.it](https://repl.it/languages/javascript). Sometimes when creating a solution, it may seem that you have done everything correctly, but the system has got into a huff and won't accept your solution. Such cases are borderline impossible. Failed tests simply won't get as far as the site, they are automatically run after each change. In the vast majority of cases (all our projects have been run millions of times in total over many years) the error is in the solution code. It can be very imperceptible, maybe you used the wrong punctuation, or you used upper case instead of lower case, or you missed a comma. Other cases are more complicated. Maybe your solution works for one set of inputs, but not for another. So always read the instructions and test your output carefully. There will almost certainly be some sign of an error. -However, if you are sure about a mistake or have found an inaccuracy, you can always point it out. At the end of each theory section, there is a link to the contents of the lesson on Github (this project is completely open-source!). You can write about an issue, look through the tests (you can see how your code is called there), and even send a pull request. If it's all gone over your head, then join the #hexlet-feedback channel in [Slack community](https://slack.hexlet.io/), where we'll always be ready to help you. +However, if you are sure about a mistake or have found an inaccuracy, you can always point it out. At the end of each theory section, there is a link to the contents of the lesson on GitHub (this project is completely open-source!). You can write about an issue, look through the tests (you can see how your code is called there), and even send a pull request. If it's all gone over your head, then join the #hexlet-feedback channel in [Slack community](https://slack.hexlet.io/), where we'll always be ready to help you. diff --git a/modules/10-basics/50-syntax-errors/en/README.md b/modules/10-basics/50-syntax-errors/en/README.md index 0692d240..215ef9ed 100644 --- a/modules/10-basics/50-syntax-errors/en/README.md +++ b/modules/10-basics/50-syntax-errors/en/README.md @@ -1,4 +1,4 @@ -If a JavaScript program is syntactically incorrect, the interpreter will show a relevant message and a message showing the file and line where the error might have occurred. **Syntax errors** occur when the code has grammatical mistakes. Grammar is essential to human language, but a text with grammar mistakes can still be read and understood. However, when it comes to programming, things are much more strict. Even a tiny mistake can mean your program won't run. Maybe you've mixed up your brackets, or there's a `;` that you forgot to add — these are just some examples of such mistakes. +If a JavaScript program is syntactically incorrect, the interpreter will show a relevant message and a message showing the file and line where the error might have occurred. **Syntax errors** occur when the code has grammatical mistakes. Grammar is essential to human language, but a text with grammar mistakes can still be read and understood. However, when it comes to programming, things are much stricter. Even a tiny mistake can mean your program won't run. Maybe you've mixed up your brackets, or there's a `;` that you forgot to add — these are just some examples of such mistakes. Here is an example of some code with a syntax error: diff --git a/modules/20-arithmetics/20-basic/en/README.md b/modules/20-arithmetics/20-basic/en/README.md index 37bde782..de77aaf5 100644 --- a/modules/20-arithmetics/20-basic/en/README.md +++ b/modules/20-arithmetics/20-basic/en/README.md @@ -23,7 +23,7 @@ After launching, the result will appear on the screen: 7 ``` -Besides addition, the following operations are available: +The following operations are available besides addition: `*` — multiplication `/` — division `-` — subtraction diff --git a/modules/20-arithmetics/50-float/en/README.md b/modules/20-arithmetics/50-float/en/README.md index 80b0c3a6..17e43844 100644 --- a/modules/20-arithmetics/50-float/en/README.md +++ b/modules/20-arithmetics/50-float/en/README.md @@ -20,6 +20,6 @@ console.log(Number.MAX_SAFE_INTEGER); 9007199254740991 ``` -Rational numbers are not lined up in a continuous chain like integers, there's an infinite amount of numbers between _0.1_ and _0.2_. So now we have a big problem: how can we store rational numbers? Excellent question. There is a myriad of articles in the internet about memory organization in these cases. Moreover, there is even a standard describing how to do it correctly, and an overwhelming number of languages are based on this set of recommendations. +Rational numbers are not lined up in a continuous chain like integers, there's an infinite amount of numbers between _0.1_ and _0.2_. So now we have a big problem: how can we store rational numbers? Excellent question. There is a myriad of articles on the internet about memory organization in these cases. Moreover, there is even a standard describing how to do it correctly, and an overwhelming number of languages are based on this set of recommendations. As developers, it's important to understand that operations with floating numbers are not precise (though precision can be adjusted using special tricks). diff --git a/modules/20-arithmetics/80-linting/en/README.md b/modules/20-arithmetics/80-linting/en/README.md index 1712fb3f..3c727923 100644 --- a/modules/20-arithmetics/80-linting/en/README.md +++ b/modules/20-arithmetics/80-linting/en/README.md @@ -1,6 +1,6 @@ Since we've learned to write simple programs, let's talk about the very process of writing. -The program code should be organized in a certain way so that it is sufficiently clear and easy to maintain. Special sets of rules - standards - describe different aspects of code writing. The most common standard in JavaScript is [AirBnb](https://github.com/airbnb/javascript). +The program code should be organized in a certain way so that it is sufficiently clear and easy to maintain. Special sets of rules - standards - describe different aspects of code writing. The most common standard in JavaScript is [Airbnb](https://github.com/airbnb/javascript). In any programming language, there are utilities known as **linters**. They ensure the code meets the standards. For example, [ESLint](https://eslint.org/) analyzes JavaScript code. @@ -15,7 +15,7 @@ Linter won't be happy about it, because several rules have been violated: * [space-infix-ops](https://eslint.org/docs/rules/space-infix-ops) – No space between operator and operands * [no-mixed-operators](https://eslint.org/docs/rules/no-mixed-operators) – You can't write code that contains multiple operations in a single expression with no explicit parentheses separation -In the last lesson we recognized that such an abundance of numbers and symbols may be confusing and we decided to add parentheses purely for the sake of readability: +In the last lesson we recognized that such an abundance of numbers and symbols may be confusing, and we decided to add parentheses purely for the sake of readability: ```javascript console.log(((8 / 2) + 5) - (-3 / 2)); // => 10.5 @@ -35,4 +35,4 @@ Unfortunately, yes. This time, the `*` and `/` are in the same expression and th [no-mixed-operators](https://eslint.org/docs/rules/no-mixed-operators) is just one of many rules. Other ones describe indentations, entity names, parentheses, mathematical operations, line length, and many other aspects. Each rule may seem small and insignificant, but together they form the basis of good code. -CodeBasics won't test your code with a linter now, but in your future Hexlet practice segments and in actual development, the linter will work and flag the bugs. +Code-Basics won't test your code with a linter now, but in your future Hexlet practice segments and in actual development, the linter will work and flag the bugs. diff --git a/modules/25-strings/15-escape-characters/en/README.md b/modules/25-strings/15-escape-characters/en/README.md index 10f0ba4a..c8b6f5a6 100644 --- a/modules/25-strings/15-escape-characters/en/README.md +++ b/modules/25-strings/15-escape-characters/en/README.md @@ -42,9 +42,9 @@ The result: '\n\n'.length; // 2 !!! ``` -Why is it done in this way? `\n` is just a way to write a line break symbol. That's why line feed is just one character, just invisible. And it's also why this problem has arisen. There had to be a way of representing it using a keyboard. And since the number of keyboard characters is limited and they're all dedicated to very important things, special characters are entered using these escape sequences. +Why is it done in this way? `\n` is just a way to write a line break symbol. That's why line feed is just one character, just invisible. And it's also why this problem has arisen. There had to be a way of representing it using a keyboard. And since the number of keyboard characters is limited, and they're all dedicated to very important things, special characters are entered using these escape sequences. -The Line Feed symbol is not something specific to programming. Anyone who has ever typed on a computer has used the line feed by clicking Enter. Many editors can display these invisible characters, you can use this feature to see where they are (though it's only for display, these characters are invisible, they've no graphical representation): +The Line Feed symbol is not something specific to programming. Anyone who has ever typed on a computer has used the line feed by clicking Enter. Many editors can display these invisible characters, you can use this feature to see where they are (though it's only for display, these characters are invisible, they have no graphical representation):
- Hi!¶ @@ -124,4 +124,4 @@ The result: Joffrey loves using \n-A small but important note about Windows. Windows uses `\r\n` by default to enter a line break. This combination works well in Windows but creates problems when copied to other systems (for example, when the development team includes both Windows and Linux users). The point is that the sequence `\r\n` has a different interpretation depending on the encoding chosen (we discuss it later). For this reason, it's common among developers to always use `\n` without `\r`, since it means that LF is always interpreted the same way and works fine on any system. Remember to configure your editor to use `\n`. +A small but important note about Windows. Windows uses `\r\n` by default to enter a line break. This combination works well on Windows but creates problems when copied to other systems (for example, when the development team includes both Windows and Linux users). The point is that the sequence `\r\n` has a different interpretation depending on the encoding chosen (we discuss it later). For this reason, it's common among developers to always use `\n` without `\r`, since it means that LF is always interpreted the same way and works fine on any system. Remember to configure your editor to use `\n`. diff --git a/modules/25-strings/30-encoding/en/EXERCISE.md b/modules/25-strings/30-encoding/en/EXERCISE.md index 387d1252..c27df311 100644 --- a/modules/25-strings/30-encoding/en/EXERCISE.md +++ b/modules/25-strings/30-encoding/en/EXERCISE.md @@ -7,7 +7,7 @@ console.log(String.fromCharCode(63)); Character 63 will be printed - a question mark. You can print any character this way. -Find an ASCII table on the internet. You can use queries like "ascii codes table" or "ascii codes". Generally, these tables give codes in several number systems: decimal, binary, octal and hexadecimal. We are interested in the decimal code (*dec* or *decimal*). +Find an ASCII table on the internet. You can use queries like "ASCII codes table" or "ASCII codes". Generally, these tables give codes in several number systems: decimal, binary, octal and hexadecimal. We are interested in the decimal code (*dec* or *decimal*). Using the example above and the table you found, print the characters `~`, `^` and `%` (each on their own line). diff --git a/modules/25-strings/30-encoding/en/README.md b/modules/25-strings/30-encoding/en/README.md index 64eff811..1567833c 100644 --- a/modules/25-strings/30-encoding/en/README.md +++ b/modules/25-strings/30-encoding/en/README.md @@ -32,6 +32,6 @@ Different encodings have different numbers of characters. At first, small tables With the development of computers, different countries needed their own comprehensive tables. Including Cyrillic letters, hieroglyphs, Arabic script, additional mathematical and typographic characters, and even emojis as time went on. -One [Unicode standarts](https://en.wikipedia.org/wiki/Unicode) standard in particular, *utf-8*, is the one used in most cases today. It includes characters from almost all of the written languages found in the world. Therefore, a letter written by someone from China in Chinese can easily be opened and read natively on a computer in Finland (whether the reader would understand it or not is another question). +One [Unicode standards](https://en.wikipedia.org/wiki/Unicode) standard in particular, *utf-8*, is the one used in most cases today. It includes characters from almost all the written languages found in the world. Therefore, a letter written by someone from China in Chinese can easily be opened and read natively on a computer in Finland (whether the reader would understand it or not is another question). Programmers have to deal with encodings regularly. Unicode support in different programming languages is carried out on a different level. Moreover, encodings must be declared when working with databases and files. diff --git a/modules/30-variables/15-variables-expressions/en/EXERCISE.md b/modules/30-variables/15-variables-expressions/en/EXERCISE.md index 9065745b..563d4d2e 100644 --- a/modules/30-variables/15-variables-expressions/en/EXERCISE.md +++ b/modules/30-variables/15-variables-expressions/en/EXERCISE.md @@ -1,5 +1,5 @@ -Write a program that takes the initial amount of euros stored in the variable `eurosCount`, converts euros to dollars, and prints it. Then, it should convert the result to yuans and print it on a new line. +Write a program that takes the initial amount of euros stored in the variable `eurosCount`, converts euros to dollars, and prints it. Then, it should convert the result to yuan and print it on a new line. Sample output for 100 euros: @@ -10,4 +10,4 @@ Sample output for 100 euros: Suppose that: - 1 euro = 1.25 dollars -- 1 dollar = 6.91 yuans +- 1 dollar = 6.91 yuan diff --git a/modules/30-variables/15-variables-expressions/en/README.md b/modules/30-variables/15-variables-expressions/en/README.md index aaab7295..676c4328 100644 --- a/modules/30-variables/15-variables-expressions/en/README.md +++ b/modules/30-variables/15-variables-expressions/en/README.md @@ -1,5 +1,5 @@ -Variables are helpful not only for storing and reusing data but also for simplifying complex calculations. Consider an example: you need to convert euros into yuans through dollars. Banks often do this kind of conversion via an intermediate currency when shopping abroad. +Variables are helpful not only for storing and reusing data but also for simplifying complex calculations. Consider an example: you need to convert euros into yuan through dollars. Banks often do this kind of conversion via an intermediate currency when shopping abroad. First, convert 50 euros into dollars. Suppose that one euro is $1.25: @@ -34,28 +34,28 @@ console.log(who); Run it on [repl.it](https://repl.it/languages/javascript) and experiment a little with it. -Now, back to our currency program. We'll record the dollar value in yuans as a separate variable. Calculate the value of 50 euros in dollars by multiplying them by `1.25`. Suppose that 1 dollar is 6.91 yuans: +Now, back to our currency program. We'll record the dollar value in yuan as a separate variable. Calculate the value of 50 euros in dollars by multiplying them by `1.25`. Suppose that 1 dollar is 6.91 yuan: ```javascript -let yuansPerDollar = 6.91; +let yuanPerDollar = 6.91; let dollarsCount = 50 * 1.25; // 62.5 -let yuansCount = dollarsCount * yuansPerDollar; // 431.875 +let yuanCount = dollarsCount * yuanPerDollar; // 431.875 -console.log(yuansCount); +console.log(yuanCount); ``` Now, let's merge our output with some text via concatenation: ```javascript -let yuansPerDollar = 6.91; +let yuanPerDollar = 6.91; let dollarsCount = 50 * 1.25; // 62.5 -let yuansCount = dollarsCount * yuansPerDollar; // 431.875 +let yuanCount = dollarsCount * yuanPerDollar; // 431.875 -console.log('The price is ' + yuansCount + ' yuans'); +console.log('The price is ' + yuanCount + ' yuan'); ```
-The price is 431.875 yuans +The price is 431.875 yuanAny variable can be part of any expression. During the computation, the variable's name is replaced with its value. diff --git a/modules/30-variables/15-variables-expressions/ru/README.md b/modules/30-variables/15-variables-expressions/ru/README.md index 48287553..1fe17921 100644 --- a/modules/30-variables/15-variables-expressions/ru/README.md +++ b/modules/30-variables/15-variables-expressions/ru/README.md @@ -8,7 +8,7 @@ let dollarsCount = 50 * 1.25; console.log(dollarsCount); // => 62.5 ``` -В предыдущем уроке мы записывали в переменную конкретное значение. А здесь `let dollarsCount = 50 * 1.25;` справа от знака равно находится **выражение**. Интерпретатор вычислит результат — `62.5` — и запишет его в переменную. С точки зрения интерпретатора не важно, что перед ним: `62.5` или `50 * 1.25`, для него оба варианта — выражения, которые надо вычислить. И они вычисляются в одно и тоже значение — `62.5`. +В предыдущем уроке мы записывали в переменную конкретное значение. А здесь `let dollarsCount = 50 * 1.25;` справа от знака равно находится **выражение**. Интерпретатор вычислит результат — `62.5` — и запишет его в переменную. С точки зрения интерпретатора не важно, что перед ним: `62.5` или `50 * 1.25`, для него оба варианта — выражения, которые надо вычислить. И они вычисляются в одно и то же значение — `62.5`. Любая строка — выражение. Конкатенация строк — тоже выражение. Когда интерпретатор видит выражение, он обрабатывает его и генерирует результат — **значение выражения**. Вот несколько примеров выражений, а в комментариях справа от каждого выражения — итоговое значение: diff --git a/modules/30-variables/23-constants/en/README.md b/modules/30-variables/23-constants/en/README.md index 5cefe9cd..12340ad1 100644 --- a/modules/30-variables/23-constants/en/README.md +++ b/modules/30-variables/23-constants/en/README.md @@ -33,7 +33,7 @@ const pi = 3.14; pi = 5; // TypeError: Assignment to constant variable. ``` -You may be wondering why we need it. Can't we just use variables? Even if we limit ourselves to variables, it won't change the fact that they will often play the role of constants. Moreover, it is possible to write JavaScript code idiomatically without using variables at all. Take a look at the example from [the actual Hexlet code](https://github.com/Hexlet/hexlet-exercise-kit/blob/main/import-documentation/index.js). You're unlikely to understand it at this stage, but try counting the number of constants and variables there are, you'll see that there's exactly one variable and a whole bunch of constants. +You may be wondering why we need it. Can't we just use variables? Even if we limit ourselves to variables, it won't change the fact that they will often play the role of constants. Moreover, it is possible to write JavaScript code idiomatically without using variables at all. Take a look at the example from [the actual Hexlet code](https://github.com/Hexlet/hexlet-exercise-kit/blob/main/import-documentation/index.js). You're unlikely to understand it at this stage, but try counting the number of constants and variables there are, you'll see that there's exactly one variable and a bunch of constants. Constants make it a lot easier to analyze; when we encounter a constant, it's obvious right away that its value always stays the same. With constants, we don't need to worry about when they were written. With variables, however, we can't be certain of their value and have to analyze all the code to figure out how they may have changed. diff --git a/modules/35-calling-functions/150-calling-functions-expression/en/README.md b/modules/35-calling-functions/150-calling-functions-expression/en/README.md index 39cef679..98ba6b62 100644 --- a/modules/35-calling-functions/150-calling-functions-expression/en/README.md +++ b/modules/35-calling-functions/150-calling-functions-expression/en/README.md @@ -16,7 +16,7 @@ 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: +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: ```javascript // Pointless code that won't work diff --git a/modules/35-calling-functions/270-deterministic/en/README.md b/modules/35-calling-functions/270-deterministic/en/README.md index 95923b21..83c91466 100644 --- a/modules/35-calling-functions/270-deterministic/en/README.md +++ b/modules/35-calling-functions/270-deterministic/en/README.md @@ -1,5 +1,5 @@ -Regardless of the programming language, functions possess certain fundamental properties. Knowing these properties makes it easier to predict the behavior of functions, as well as their testing and their usage. These properties include determinacy. A function is deterministic when it returns the same result for the same input parameters. For example, a function counting the number of characters is deterministic: +Regardless of the programming language, functions possess certain fundamental properties. Knowing these properties makes it easier to predict the behavior of functions, as well as their testing and their usage. These properties include determinism. A function is deterministic when it returns the same result for the same input parameters. For example, a function counting the number of characters is deterministic: ```javascript import { length } from 'hexlet-basics/string'; @@ -19,4 +19,4 @@ Math.random(); // 0.09856613113197676 Math.random(); // 0.8839904367241888 ``` -So what use is knowing that to us? Determinacy seriously affects many different aspects. Deterministic functions are easy to work with, easy to optimize, and easy to test. If you can make a function deterministic, it's best to make it one. +So what use is knowing that to us? Determinism seriously affects many different aspects. Deterministic functions are easy to work with, easy to optimize, and easy to test. If you can make a function deterministic, it's best to make it one. diff --git a/modules/35-calling-functions/350-stdlib/en/README.md b/modules/35-calling-functions/350-stdlib/en/README.md index 03e0fe6e..35330d03 100644 --- a/modules/35-calling-functions/350-stdlib/en/README.md +++ b/modules/35-calling-functions/350-stdlib/en/README.md @@ -11,4 +11,4 @@ Here are some tips to learn about new features: The JavaScript standard library's structure has its peculiarities. Since the code can run in different environments, such as a server or a browser, the capabilities of the standard library are highly dependent on the use case. For example, you can't perform some server tasks in a browser. For server-side documentation, see https://nodejs.org. The server portions of the standard library are organized into modules, each module has its own page with full descriptions of all its functions. In particular, the module [fs](https://nodejs.org/api/fs.html) is required to work with the file system, its functions allow you to write and read files. -As for the browsers, there's not much stuff. For the most part, it's some basic functions built into the language. For example, the math [functions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math) we've seen before.. The rest of the features you can add via third-party libraries. +As for the browsers, there's not much stuff. For the most part, it's some basic functions built into the language. For example, the math [functions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math) we've seen before. The rest of the features you can add via third-party libraries. diff --git a/modules/38-properties/200-properties-methods/en/README.md b/modules/38-properties/200-properties-methods/en/README.md index f7ee09e1..ac581964 100644 --- a/modules/38-properties/200-properties-methods/en/README.md +++ b/modules/38-properties/200-properties-methods/en/README.md @@ -29,7 +29,7 @@ Why do we need methods? Why not just use functions? The situation with numbers i There are two reasons why it's done that way: -1. It's just always been like that. JavaScript was developed a little too quickly, so not everything was well thought out +1. It's just always been like that. JavaScript was developed a little too quickly, so not everything was well-thought-out 2. Not all functions are linked to a specific value. For example, `Math.min()`. This function finds the minimum of all numbers passed to it. It doesn't make sense to make this function a method of a particular number, like `(1).min()`. It has no connection to any particular number On the other hand, functions that work with a particular number should be implemented as methods for the sake of consistency. Such functions include calculating the modulus of a number. I.e., instead of `Math.abs(-10)`, it's more reasonable to have `(-10).abs()`. diff --git a/modules/40-define-functions/150-define-functions-return/en/README.md b/modules/40-define-functions/150-define-functions-return/en/README.md index 4b4f9863..9e588aaf 100644 --- a/modules/40-define-functions/150-define-functions-return/en/README.md +++ b/modules/40-define-functions/150-define-functions-return/en/README.md @@ -5,7 +5,7 @@ Functions in JavaScript become really useful when they start to return data rath const message = greetHexlet(); console.log(message); ``` -We assign a function output to the variable `message`. In order to make this code work, the function must use the `return` instruction inside of itself: +We assign a function output to the variable `message`. In order to make this code work, the function must use the `return` instruction inside itself: ```javascript const greetHexlet = () => { diff --git a/modules/45-logic/28-logical-negation/en/EXERCISE.md b/modules/45-logic/28-logical-negation/en/EXERCISE.md index 7237d1c3..92097e9c 100644 --- a/modules/45-logic/28-logical-negation/en/EXERCISE.md +++ b/modules/45-logic/28-logical-negation/en/EXERCISE.md @@ -1,5 +1,5 @@ -1. Write a function, `isPalindrome()`, to check if a word is a palindrome. A palindrome is a word that reads the same backwards as it does forwards. +1. Write a function, `isPalindrome()`, to check if a word is a palindrome. A palindrome is a word that reads the same backwards as it does forward. ```javascript isPalindrome('refer'); // true diff --git a/modules/45-logic/70-logical-expressions/en/README.md b/modules/45-logic/70-logical-expressions/en/README.md index 84a52259..28c15537 100644 --- a/modules/45-logic/70-logical-expressions/en/README.md +++ b/modules/45-logic/70-logical-expressions/en/README.md @@ -42,7 +42,7 @@ undefined || ''; // '' If `name` is given one of the falsy values, an empty string will be assigned to the `value` constant. In that case, in subsequent code, we will be able to treat `value` as a string. -But there is a potential bug. If `name` contains a falsy value and it's okay to assign values like `0`, `undefined`, `NaN` or `null` to the `value` constant, then the code above will get it wrong: +But there is a potential bug. If `name` contains a falsy value, and it's okay to assign values like `0`, `undefined`, `NaN` or `null` to the `value` constant, then the code above will get it wrong: ```javascript // Oops @@ -51,7 +51,7 @@ false || ''; // '' undefined || ''; // '' ``` -We covered the comparison operators `===` and `!==` in one of our lessons and we mentioned that JavaScript also has the operators `==` and `!=`, though you shouldn't use them. The very difference lies in the type conversion: +We covered the comparison operators `===` and `!==` in one of our lessons, and we mentioned that JavaScript also has the operators `==` and `!=`, though you shouldn't use them. The very difference lies in the type conversion: ```javascript console.log('' === false); // => false diff --git a/modules/48-conditionals/65-switch/en/README.md b/modules/48-conditionals/65-switch/en/README.md index c4e690a7..0580b04e 100644 --- a/modules/48-conditionals/65-switch/en/README.md +++ b/modules/48-conditionals/65-switch/en/README.md @@ -37,7 +37,7 @@ Switch is a rather advanced construct considering the number of elements it cons * The `case` and `default` constructs, where the behavior for different values of the variable is described. Each `case` corresponds to `if` in the example above. `default` is a special condition corresponding to the `else` branch in conditionals. Neither `else` nor `default` is necessary (but the linter will always [ask for it](https://eslint.org/docs/rules/default-case)) * `break` is needed to prevent it from "falling through". If `break` is omitted, then the program will continue to the next `case` statement after the required `case`, and carry on until the next `break` or the end of the *switch* -The curly brackets in `switch* don't specify a code block unlike elsewhere. Only the syntax shown above is acceptable. In other words, you can use `case` or `default` there. But inside each `case` (and `default`), the situations are different. You can execute any arbitrary code here: +The curly brackets in `switch` don't specify a code block unlike elsewhere. Only the syntax shown above is acceptable. In other words, you can use `case` or `default` there. But inside each `case` (and `default`), the situations are different. You can execute any arbitrary code here: ```javascript switch (count) { diff --git a/modules/50-loops/10-while/en/README.md b/modules/50-loops/10-while/en/README.md index 27fd9e0e..c0bc1d43 100644 --- a/modules/50-loops/10-while/en/README.md +++ b/modules/50-loops/10-while/en/README.md @@ -104,4 +104,4 @@ while (true) { } ``` -To sum up. When do we need loops and when can we do without them? It is physically impossible to do without loops when a problem-solving algorithm requires actions to be repeated, as in the example with the book, and the number of these actions is unpredictable. +To sum up. When do we need loops, and when can we do without them? It is physically impossible to do without loops when a problem-solving algorithm requires actions to be repeated, as in the example with the book, and the number of these actions is unpredictable. diff --git a/modules/50-loops/20-aggregation-numbers/en/README.md b/modules/50-loops/20-aggregation-numbers/en/README.md index 5666ebe0..c66099dd 100644 --- a/modules/50-loops/20-aggregation-numbers/en/README.md +++ b/modules/50-loops/20-aggregation-numbers/en/README.md @@ -68,6 +68,6 @@ sum = sum + 2; // ? It will result in `NaN`, i.e. not a number, in `sum`. It occurs due to an attempt to add `2` and `undefined`. So you need to have an initial value. Why is 0 chosen in the code above? Well, it is easy to check that all the other options would lead to the wrong result. If the initial value is 1, the sum will be 1 more than it should be. -In mathematics, there is a concept of an **identity element/neutral element**, an element for each type of operation. Its meaning is easy to grasp. An operation with this element doesn't change the operand. For addition, any number plus zero results in the number itself. The same goes for subtraction. Even concatenation has a neutral element, which is an empty string: `'' + 'one'` will be 'one'. +In mathematics, there is a concept of an **identity element/neutral element**, an element for each type of operation. Its meaning is easy to grasp. An operation with this element doesn't change the operand. In addition, any number plus zero results in the number itself. The same goes for subtraction. Even concatenation has a neutral element, which is an empty string: `'' + 'one'` will be 'one'. Self-check. What is the neutral element of a multiplication operation? diff --git a/modules/50-loops/26-conditions-inside-loops/en/README.md b/modules/50-loops/26-conditions-inside-loops/en/README.md index 71674633..9a8ea290 100644 --- a/modules/50-loops/26-conditions-inside-loops/en/README.md +++ b/modules/50-loops/26-conditions-inside-loops/en/README.md @@ -12,7 +12,7 @@ countChars('Sansa', 'y'); // 0 Before examining its contents, answer these questions: * Is this an aggregate operation? -* What will be the test condition for whether or not the character occurs? +* What will be the test condition for whether the character occurs? ```javascript const countChars = (str, char) => { diff --git a/modules/ignore b/modules/ignore index 47a16eaa..3bdd036e 100755 --- a/modules/ignore +++ b/modules/ignore @@ -1676,3 +1676,2046 @@ Hurray Предлагаемые варианты: мотан, мутон, мотор, масон, батон, моток, бутон, затон, манон, мутант, натан, ротан, шатун, батан, батун, бутан, датун, фотон, футон, хатун, катан, кутан, латан, мётан, мадонн, майан, макан, мамон, манан, маран, марон, мартан, мата, матах, матам, маток, матом, матов, мату, матую, матуй, матуя, мазан, метан, мохон, моран, мота, мотаю, мотах, мотай, мотал, мотам, мотана, мотано, мотаны, мотая, мотав, мотою, мотой, мотом, мотов, моту, мошон, мултан, мутен, мутна, мутона, мутоне, мутону, мутоны, патан, путан, ротон, сатан, сутан, шатан, Датун, Хатун, Катан, Котон, Натан, Патон, Сатан, ма тан, мат ан, мата н ------------------------ +40-define-functions/150-define-functions-return/en/EXERCISE.md:1:43:6 +...tion ``, that returns a string 'hurray! hurray! hurray!'. ```javascript ``` +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +Hurray +------------------------ +40-define-functions/150-define-functions-return/en/EXERCISE.md:1:43:6 +... that returns a string 'hurray! hurray! hurray!'. ```javascript ``` +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +Hurray +------------------------ +40-define-functions/100-define-functions-syntax/en/README.md:10:43:9 +.... Its job is to print out a greeting:
Hello, Hexlet!Hello, Hexlet!```javascript ``... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +48-conditionals/50-else-if/en/EXERCISE.md:7:43:8 +...alues: ``, ``, ``. Rules: * Friends: 'Karstark', 'Tally' * Enemies: 'Lannister', 'Frey... +Possible spelling mistake found. +Предлагаемые варианты: +Karst ark +------------------------ +45-logic/70-logical-expressions/en/README.md:8:43:9 +... ```javascript ``` Correct answer::
1The... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/70-logical-expressions/en/README.md:8:43:20 +...ript ``` Correct answer::
1The **OR** operator works... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/70-logical-expressions/en/README.md:19:43:9 +...e of ``. Example: ```javascript ```
0The... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/70-logical-expressions/en/README.md:19:43:20 +...xample: ```javascript ```
0The **AND** operator work... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/70-logical-expressions/en/README.md:27:43:5 +...d into ``. Those values are considered [falsy](https://developer.mozilla.org/en-US/do... +Possible spelling mistake found. +Предлагаемые варианты: +false, palsy +------------------------ +45-logic/70-logical-expressions/en/README.md:35:43:5 +...vascript ``` If `` is given one of the falsy values, an empty string will be assigne... +Possible spelling mistake found. +Предлагаемые варианты: +false, palsy +------------------------ +45-logic/70-logical-expressions/en/README.md:37:43:5 +...re is a potential bug. If `` contains a falsy value, and it's okay to assign values l... +Possible spelling mistake found. +Предлагаемые варианты: +false, palsy +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:14:43:2 +...dy, 2 persons: 2 x 3 + **remainder 1**. So 7 is not a multiple of 2. * 21 candie... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:16:43:2 +...es, 3 persons: 3 x 7 + **remainder 0**. So 21 is a multiple of 3. * 19 candies, ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:18:43:2 +...es, 5 persons: 5 x 3 + **remainder 4**. So 19 is not a multiple of 5. The `` op... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:34:43:1 +...n. Literally, it means the following: *"calculate the remainder of dividing `` b... +Unpaired symbol: ‘"’ seems to be missing +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:34:43:1 +...return the result of the equality check "*. Another example: write a function to... +Unpaired symbol: ‘"’ seems to be missing +------------------------ +45-logic/25-logical-operators/en/README.md:33:43:2 +... | |-------| ------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | F... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:33:43:2 +...-----| ------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | FALSE ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:34:43:2 +...---| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | FALSE | | FALSE | TRUE | F... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:35:43:2 +...RUE | FALSE | FALSE | | FALSE | TRUE | FALSE | | FALSE | FALSE | FALSE ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:47:43:2 +... B | |-------|-------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | *... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:47:43:2 +...-----|-------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | **TRUE** ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:48:43:2 +...---| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | **TRUE** | | FALSE | TRUE | *... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:49:43:2 +...RUE | FALSE | **TRUE** | | FALSE | TRUE | **TRUE** | | FALSE | FALSE | FALSE ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/15-predicates/en/README.md:6:43:9 +...m the last lesson: ```javascript ```
falseThi... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/15-predicates/en/README.md:6:43:20 +...lesson: ```javascript ```
falseThis kind of function is ... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/15-predicates/en/README.md:26:43:9 +... it's the word ``: ```javascript ```
false+This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/15-predicates/en/README.md:26:43:20 +...ord ``: ```javascript ```
false+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/10-bool-type/en/README.md:39:43:9 +...eturn that result. ```javascript ```
falseNow... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/10-bool-type/en/README.md:39:43:20 +...result. ```javascript ```
falseNow, perform the check on... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/10-bool-type/en/README.md:46:43:9 +...is six months old: ```javascript ```
true+This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/10-bool-type/en/README.md:46:43:20 +...hs old: ```javascript ```
true+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +50-loops/70-for/en/EXERCISE.md:1:0:7 +Samwell discovered that his messages were being... +Possible spelling mistake found. +Предлагаемые варианты: +Sam well +------------------------ +50-loops/20-aggregation-numbers/en/README.md:21:43:3 +...Thus, for the range from 5 to 7, it is 7 - 5 + 1, or three iterations. The main di... +If you want to indicate numerical ranges or time ranges, consider using an en dash. +Предлагаемые варианты: +– +------------------------ +50-loops/10-while/en/README.md:17:43:9 +...on't be a problem: ```javascript ```
1 2 3 finished!... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +50-loops/10-while/en/README.md:17:43:20 +...roblem: ```javascript ```1 2 3 finished!https://repli... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +50-loops/10-while/en/EXERCISE.md:6:43:9 +...o the lower limit. ```javascript ```4
3
2
1... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +50-loops/10-while/en/EXERCISE.md:6:43:20 +... limit. ```javascript ```4+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +38-properties/400-properties-expressions/en/EXERCISE.md:3:43:9 +... constant `` in the following format:
3
2
1
finished!First: N Last: ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +38-properties/400-properties-expressions/en/EXERCISE.md:3:43:20 +...` in the following format:First: N Last: tYour task is... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +38-properties/100-properties-syntax/en/README.md:18:43:10 +...their value is ``: ```javascript ``` *Self-сheck. What will `` print for the variable ``... +Possible spelling mistake found. +Предлагаемые варианты: +Spell-check +------------------------ +35-calling-functions/350-stdlib/en/README.md:11:43:2 +...s functions. In particular, the module [fs](https://nodejs.org/api/fs.html) is req... +Possible spelling mistake found. +Предлагаемые варианты: +FS, is, as, us, FM, ft, vs, FRS, CFS, FBS, FCS, FD, FP, FSA, FSU, TFS, WS, fr, ms, FSH, FSI, FSK, FSM, HFS, NFS, phi, sf, ts, LFS, fps, ifs, phys, PS, AFS, As, BFS, BS, CS, Cs, DFS, DS, EFS, ES, Es, F, FA, FAS, FB, FC, FCs, FDS, FES, FF, FFS, FG, FH, FHS, FI, FJ, FL, FLS, FMS, FMs, FN, FNS, FO, FOS, FPS, FPs, FR, FSB, FSC, FSD, FSE, FSF, FSG, FSN, FSP, FSR, FSS, FST, FSW, FW, FX, FY, Fe, Fm, Fr, GFS, HS, IFS, IS, JS, KS, Ks, LS, MFS, MS, Ms, NS, OFS, OS, Os, PFS, RFS, RS, S, SFS, SS, TS, UFS, US, VFS, XS, ZFS, Zs, cs, f, fa, ff, fl, gs, ks, ls, phis, rs, s, FT +------------------------ +35-calling-functions/150-calling-functions-expression/en/EXERCISE.md:3:43:9 +...in the variable `` using this format:First: N Last: ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +35-calling-functions/150-calling-functions-expression/en/EXERCISE.md:3:43:20 +...able `` using this format:First: N Last: tTry to creat... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +33-data-types/10-primitive-data-types/en/README.md:6:43:6 +...type, while numbers refer to Number and BigInt (very large numbers). What are these da... +Possible spelling mistake found. +Предлагаемые варианты: +Big Int, SIGINT +------------------------ +33-data-types/10-primitive-data-types/en/README.md:8:43:6 +... are divided into two types: Number and BigInt. All numbers below a certain threshold ... +Possible spelling mistake found. +Предлагаемые варианты: +Big Int, SIGINT +------------------------ +33-data-types/10-primitive-data-types/en/README.md:8:43:6 +... and all numbers above it belong to the Biglnt type. They're divided this way due to t... +Possible spelling mistake found. +Предлагаемые варианты: +Billet, Bight, Bigot, Piglet, Wiglet, FIGlet, SIGINT +------------------------ +33-data-types/10-primitive-data-types/en/README.md:20:43:6 +...erator: ```javascript ``` The Number, BigInt, and String data types are *primitive* ... +Possible spelling mistake found. +Предлагаемые варианты: +Big Int, SIGINT +------------------------ +30-variables/25-interpolation/en/EXERCISE.md:3:43:9 +...``. The output should look like this:Do you want to ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/25-interpolation/en/EXERCISE.md:3:43:20 +...put should look like this:Do you want to eat, Arya?+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/20-magic-numbers/en/README.md:17:43:14 +...ipt ``` Note the following details: * lowerCamelCase naming * The two new variables are sepa... +Possible spelling mistake found. +------------------------ +30-variables/20-magic-numbers/en/EXERCISE.md:14:43:9 +...les and print them. You'll get this:King Balon the ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/20-magic-numbers/en/EXERCISE.md:14:43:20 +...nt them. You'll get this:King Balon the 6th has 102 rooms. King Balon the 6th has 102 rooms.The vari... +Possible spelling mistake found. +Предлагаемые варианты: +Salon, Bacon, Baron, Baton, Talon, Halon +------------------------ +30-variables/19-naming-style/en/README.md:7:43:9 +... used as a separator. For example, `` * CamelCase - each word in the name is capitalized.... +Possible spelling mistake found. +Предлагаемые варианты: +Camel Case +------------------------ +30-variables/19-naming-style/en/README.md:8:43:14 +... name is capitalized. For example, `` * lowerCamelCase - each word is capitalized except the f... +Possible spelling mistake found. +------------------------ +30-variables/19-naming-style/en/README.md:10:43:9 +...first. For example, `` Javascript uses CamelCase and its variation lowerCamelCase, with ... +Possible spelling mistake found. +Предлагаемые варианты: +Camel Case +------------------------ +30-variables/19-naming-style/en/README.md:10:43:14 +...script uses CamelCase and its variation lowerCamelCase, with the first letter of the first wor... +Possible spelling mistake found. +------------------------ +30-variables/19-naming-style/en/README.md:10:43:14 +... of the first word in lowercase. We use lowerCamelCase for variables. It means we concatenate ... +Possible spelling mistake found. +------------------------ +30-variables/19-naming-style/en/EXERCISE.md:1:43:14 +...first number" and "second number" using lowerCamelCase. Assign `` to the first variable and ``... +Possible spelling mistake found. +------------------------ +30-variables/18-variable-concatenation/en/EXERCISE.md:11:43:9 +...e. The result should look like this:Hello, Joffrey!... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/18-variable-concatenation/en/EXERCISE.md:11:43:20 +...ult should look like this:Hello, Joffrey! Here is important inf... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/15-variables-expressions/en/README.md:36:43:9 +...via concatenation: ```javascript ```The price is 43... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/15-variables-expressions/en/README.md:36:43:20 +...nation: ```javascript ```The price is 431.875 yuanAny... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/15-variables-expressions/en/EXERCISE.md:5:43:9 +...w line. Sample output for 100 euros:125 863.75 125 863.75Suppose that: * 1... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/14-errors/en/README.md:6:43:14 +...bove program terminates with the error *ReferenceError: greeting is not defined*. *ReferenceEr... +Possible spelling mistake found. +Предлагаемые варианты: +Reference Error +------------------------ +30-variables/14-errors/en/README.md:6:43:14 +...erenceError: greeting is not defined*. *ReferenceError* means that the code uses a name (calle... +Possible spelling mistake found. +Предлагаемые варианты: +Reference Error +------------------------ +30-variables/14-errors/en/EXERCISE.md:5:43:9 +...'; The result should look like this:Targaryen and D... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/14-errors/en/EXERCISE.md:5:43:20 +...ult should look like this:Targaryen and Dragon+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/13-variables-naming/en/README.md:15:43:10 +... previous quarter?* ```javascript ``` Self-сheck. Think of a name for the variable that ... +Possible spelling mistake found. +Предлагаемые варианты: +Spell-check +------------------------ +25-strings/30-encoding/en/EXERCISE.md:8:43:3 +...We are interested in the decimal code (*dec* or *decimal*). Using the example abov... +Possible spelling mistake found. +Предлагаемые варианты: +DEC, Dec, deck, Del, den, Dee, IEC, NEC, sec, AEC, DAC, DCC, DMC, DRC, DSC, EEC, dew, DECA, DNC, DTC, Sec, deg, doc, rec, DDC, DBC, BEC, CDEC, CEC, DC, DE, DEA, DEB, DECT, DECs, DEG, DEI, DEL, DEM, DEP, DEQ, DES, DET, DEU, DFC, DHC, DIC, DLC, DOC, DPC, DVC, Dem, EC, FEC, HEC, LEC, MEC, OEC, PEC, REC, SEC, TEC, UEC, WEC, YEC, deb, def, dep, dev, DEX, he, we, be, get, her, me, new, day, did, due, set, yes, died, do, does, few, led, men, see, BBC, deal, idea, let, red, sea, ten, yet, BC, DVD, Dr, dead, deep, die, disc, dog, dry, etc, ex, hey, ice, key, leg, web, EU, Lee, PC, bed, debt, dies, diet, drew, duo, fed, fee, jet, met, neck, net, tea, wet, AFC, Ben, CBC, Dan, Dean, FCC, Mac, arc, decay, deer, demo, deny, desk, dock, duel, duet, neo, pen, per, pet, tech, Drew, IOC, LED, MCC, NFC, NYC, PRC, ROC, Rev, Ted, UTC, Web, Wei, ace, bee, bet, dad, dam, deaf, dean, decks, deed, dice, dig, dot, dub, duck, dug, dye, hoc, ref, sect, sic, ADC, APC, ATC, Alec, CCC, CDC, CPC, DA, DDR, DDT, DL, DM, DNS, DRM, DSM, DSO, DSP, DT, DX, Devi, Eden, Feb, GC, GMC, JC, Jew, MSC, Mel, NGC, NPC, OEM, PAC, PCC, PET, PFC, PVC, QC, Rex, Rey, TLC, TTC, UNC, Zen, beg, codec, dB, dear, decor, dim, din, dip, duct, dues, dyed, dyes, eds, gel, gem, sac, spec, wed, yen, AEG, APEC, Aden, BMC, CAC, CEA, CFC, CIC, CNC, CRC, CSC, CTC, DAT, DCI, DG, DLR, DMA, DMS, DMZ, DSL, DSS, DST, DTM, DTS, DUI, DUP, Decca, Dell, Deng, Doe, Dow, Dyer, ECG, EEA, ESC, Eco, FTC, GCC, GRC, Geo, HTC, IFC, IPC, ITC, Jen, KFC, LBC, LCC, Lea, Len, Lew, MBC, MDC, MHC, MeV, Meg, NAC, NEA, NRC, OPEC, OTC, Oder, PNC, PTC, Peck, RAC, RBC, REM, RPC, RSC, Rep, SBC, SCC, SLC, SRC, TAC, THC, TeX, UE, UPC, VOC, WAC, WC, WTC, decoy, deem, defy, dens, eel, fen, gen, hen, hex, med, mic, nee, ode, pea, peg, pep, rep, seq, tee, vet, wee, AEF, AGC, Beck, CEP, CVC, DBA, DCE, DCL, DCM, DDS, DKK, DLA, DLL, DMCA, DME, DMG, DMK, DNR, DOA, DPI, DQ, DRG, DRI, DSA, DSB, DSE, DTI, DVR, DWM, Desi, Diem, Dir, FAC, FDIC, FMC, FRC, GBC, GED, GPC, HCC, HFC, HMC, IAC, IDC, IEA, IED, IEP, IMC, JSC, JVC, Jed, KBC, KSC, LHC, LRC, LSC, MTC, MVC, MWC, NDC, NEP, OE, PMC, PUC, QED, RDC, RMC, RNC, SFC, SGC, SNC, TOC, TPC, TRC, TUC, UDC, beck, decal, deft, deli, dell, dent, doe, dud, eh, hem, keg, lac, odes, peck, pew, pic, rem, sew, ADAC, BNC, CJC, CWC, DCB, DCF, DDA, DDB, DDD, DDE, DLM, DLS, DMD, DMP, DMV, DND, DOB, DPD, DPT, DRA, DSD, DSR, DTA, DTP, DVT, DWI, DWT, Debs, ECD, EEOC, EIC, Eu, FDC, FNC, Fez, GEF, GFC, JCC, Keck, LDC, LFC, MNC, Mex, PEO, SDC, SVC, TBC, VEB, dace, decry, dept, deuce, doer, dz, exec, fem, gee, heck, reg, rel, secs, tel, zen, CXC, DCD, DLI, DPN, DPs, DRV, DVM, DVP, DVS, DWG, Dena, HIC, Nev, PGC, TEF, Wed, dBm, dab, docs, duh, dyer, hep, hew, idem, mew, soc, EEO, dewy, ides, msec, neg, ted, vac, vex, ceca, debs, decaf, ecu, educ, eek, recd, yep, ABC, AMC, CEO, DJ, DJs, DNA, ECW, ICC, Leo, NBC, Ned, USC, Vic, dbl, deice, dob, doz, dpt, née, Xes, dds, A9C, AAC, AAEC, AC, ACC, ADDEC, AE, AEA, AEB, AED, AEE, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEZ, AHC, AIC, AJC, AJEC, AKC, ALC, AMDEC, ANC, ANEC, AOC, AQC, ARC, ASC, AUC, AVC, AWC, AXC, AYC, Ac, BAC, BCC, BDC, BDE, BEA, BEAC, BEB, BECS, BED, BEE, BEF, BEH, BEI, BEK, BEM, BEO, BEP, BEQ, BER, BES, BET, BEU, BEV, BEW, BEX, BFC, BGC, BHC, BIC, BJC, BKC, BLC, BOC, BPC, BRC, BSC, BSc, BTC, BTEC, BUC, BVC, BWC, BXC, BYC, BZC, Be, Bic, C, C&C, C2C, CC, CDAC, CDE, CE, CEB, CED, CEE, CEF, CEG, CEI, CEJ, CEL, CEM, CEN, CEQ, CER, CES, CESC, CET, CEU, CEV, CGC, CHC, CLC, CMC, COC, CQC, CREC, CSEC, CUC, CZC, Ce, D, D&D, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D2D, D30, D31, D32, D33, D34, D35, D36, D37, D38, D39, D40, D41, D42, D45, D46, D48, D50, D51, D52, D55, D56, D57, D58, D59, D60, D61, D62, D63, D64, D65, D66, D67, D68, D70, D71, D72, D73, D74, D76, D78, D79, D8, D80, D82, D83, D86, D89, D90, D91, D96, D97, D99, DAA, DAB, DACA, DACH, DAE, DAEU, DAF, DAI, DAJ, DAK, DAL, DAP, DAR, DAU, DAV, DAX, DB7, DB9, DBB, DBCS, DBD, DBF, DBL, DBO, DBP, DBQ, DBR, DBU, DBZ, DCA, DCK, DCN, DCO, DCP, DCR, DCS, DCT, DCU, DD, DDEA, DDH, DDHC, DDI, DDL, DDLC, DDM, DDO, DDV, DECed, DEEE, DEET, DELE, DELF, DESE, DEUG, DEXA, DFA, DFB, DFCO, DFE, DFF, DFG, DFI, DFL, DFM, DFN, DFO, DFP, DFS, DFT, DFV, DFW, DGA, DGAC, DGD, DGE, DGF, DGH, DGI, DGP, DGS, DGT, DH, DHA, DHCP, DHEA, DHH, DHI, DHL, DHM, DHP, DHR, DHS, DHT, DI, DID, DIF, DIL, DIN, DIP, DIR, DISEC, DIV, DIY, DJF, DJG, DJI, DJO, DJT, DJU, DJed, DK, DKA, DKB, DKP, DKR, DKZ, DLEM, DLF, DLG, DLH, DLP, DLT, DMF, DMFC, DMI, DMM, DMO, DMPC, DMR, DMX, DMed, DMs, DN, DNB, DNF, DNI, DNK, DNL, DNP, DNT, DO, DOCX, DOD, DOE, DOF, DOH, DOHC, DOI, DOJ, DOL, DOM, DON, DOP, DOS, DOT, DP, DPA, DPB, DPE, DPH, DPIC, DPO, DPS, DPU, DPW, DR, DR1, DRAC, DRH, DRP, DRS, DRT, DS, DSF, DSG, DSI, DSK, DSN, DSQ, DSU, DSV, DTT, DTU, DTV, DTW, DUD, DUS, DVA, DVB, DVI, DWH, DWV, DXB, DXF, DXM, DXO, DZA, DZD, DZI, DZO, Day, Demi, Dems, Deon, Depp, Di, Dick, Dis, Dix, DnD, DoD, DoJ, DoS, Don, Dot, Du, Dy, E, EAC, EBC, EC1, EC4, ECA, ECB, ECC, ECE, ECL, ECM, ECN, ECO, ECP, ECR, ECS, ECT, EDC, EDEHC, EE, EED, EEE, EEG, EEGC, EEK, EEM, EEP, EER, EFC, EG, EGC, EI, EK, EM, EMC, EN, ENC, EO, EOC, EP, ER, ERC, ES, ET, EUC, EV, EW, EX, EY, EZ, Ed, El, Er, Es, Esc, FC, FD&C, FDES, FEB, FECI, FECQ, FED, FEF, FEI, FEM, FEN, FEP, FER, FERC, FES, FET, FGC, FHC, FIC, FOC, FSC, Fe, Fed, GAC, GAEC, GDC, GDE, GE, GEA, GEH, GEI, GEM, GEQ, GES, GET, GEV, GGC, GHC, GIEC, GNC, GPEC, GREC, GSC, GUC, Ge, Gen, Ger, HAC, HC, HDE, HDFC, HDLC, HEB, HEF, HEL, HEO, HER, HES, HEV, HLC, HOC, HPC, HRC, HSC, He, Heb, IBC, IC, IDE, IDES, IDEs, IDed, IE, IECA, IEF, IEG, IEM, IES, IGC, IIC, ILC, INC, IRC, IREC, ISC, IWC, IXC, Ice, Inc, JAC, JDBC, JDE, JE, JED, JEF, JEV, JFC, JIC, JOC, JRC, JTC, Jeb, Jem, KC, KCC, KE, KEA, KED, KEF, KEM, KEN, KER, KES, KET, KLC, KWC, KYC, Ken, Key, LC, LDE, LE, LEA, LEB, LEDC, LEF, LEJ, LEM, LEP, LER, LES, LEV, LGC, LIC, LLC, LMC, LOC, LPC, LTC, Le, Les, LoC, Luc, Léa, Léo, MC, MDE, ME, MEA, MEB, MED, MEDC, MEF, MEG, MEL, MEN, MEP, MER, MES, MET, MFC, MJC, MLC, MMC, MOC, MPC, MRC, MSc, MUC, Me, NC, NCC, NDRC, NE, NED, NEE, NEH, NEM, NEN, NER, NHC, NIC, NMC, NSC, NTC, Ne, Neb, Neo, OBC, OC, OCC, ODBC, ODC, ODEM, OEA, OEB, OECD, OED, OEP, OIC, OJC, OMC, OSC, PBC, PCEC, PDC, PE, PEA, PEB, PED, PEE, PEF, PEGC, PEI, PEK, PEL, PEM, PEN, PEOC, PEP, PER, PES, PESC, PEV, PHC, PIC, PJC, PLC, PNEC, POC, PPC, PQC, PSC, Peg, Pei, Pen, Pfc, PoC, PwC, QE2, QEV, QFC, QPC, QRC, RC, RCC, RE, REA, RED, REG, REI, REL, REP, RER, RES, RET, REV, REX, RFC, RHC, RIC, RLC, RRC, RTC, RUC, Re, SAC, SADEC, SC, SDE, SDEI, SDLC, SDPC, SE, SEA, SEAC, SEB, SEBC, SEF, SEG, SEJ, SEK, SEL, SEM, SEO, SEP, SER, SES, SET, SEU, SEV, SEX, SEY, SEZ, SIC, SMC, SOC, SPC, STC, SYC, Sc, Se, Sen, Sep, Set, SoC, Soc, T&C, TC, TCC, TCEC, TDC, TDE, TEB, TECS, TED, TEE, TEEC, TEI, TEM, TEP, TEQ, TER, TES, TEU, TEV, TFC, TIC, TJC, TMC, TNC, TQC, TSC, TWC, TYC, TZC, Tc, Te, Tet, Tex, ToC, UAC, UBC, UC, UCC, UED, UEM, UER, UES, UET, UFC, UGC, UIC, ULC, UMC, UQC, UUC, UVC, UWC, VAC, VC, VCC, VDC, VE, VEI, VES, VHC, VLC, VMC, VNC, VPC, VSC, VTC, W3C, WAEC, WBC, WCC, WDC, WECA, WEG, WET, WFC, WGC, WIC, WPC, WRC, WSC, WWC, Wac, XEU, XIC, XTC, Xe, YAC, YBC, YC, YEM, ZAC, ZC, ZED, ZEE, ZEF, ZEP, ac, bc, bey, c, cc, d, dag, db, dd, dded, deps, derv, devs, dick, dict, dis, div, dm, dmed, dms, don, dos, dox, dpi, drey, dun, e, eV, ea, eco, ed, em, en, enc, er, fer, fey, fez, geo, hes, inc, kc, ken, lea, lech, lee, lei, mac, meg, meh, mes, né, orc, pc, pecs, pee, plc, re, rect, req, res, rev, secy, sen, sex, src, tic, ve, veg, ye, yea, yer, yew, zed, °C, écu, DAW, DTD, EQC, KDE, LXC, PECL, QVC, a/c +------------------------ +25-strings/20-string-concatenation/en/EXERCISE.md:6:35:5 +Print the following code ``` ``` using concatenation. +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +Using +------------------------ +25-strings/10-quotes/en/EXERCISE.md:8:43:9 +... beginning and the end of the phrase:"Khal Drogo's f... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/10-quotes/en/EXERCISE.md:8:43:20 +...and the end of the phrase:"Khal Drogo's favorite word is "athja... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:1 +...se:+Unpaired symbol: ‘"’ seems to be missing +------------------------ +25-strings/15-escape-characters/en/README.md:35:43:9 +...ey have no graphical representation):"Khal Drogo's favorite word is "athjahaka... +Unpaired symbol: ‘"’ seems to be missing +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:4 +...e:+Possible spelling mistake found. +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:1 +...al Drogo's favorite word is "athjahakar"""Khal Drogo's favorite word is "athjahakar"" ... +Possible spelling mistake found. +Предлагаемые варианты: +Khan, Kcal, Hal, KAL +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:5 +...pre class='hexlet-basics-output'> "Khal Drogo's favorite word is "athjahakar""... +Possible spelling mistake found. +Предлагаемые варианты: +Dog, Drop, Drug, Dogs, Drove, Drugs, Logo, Diego, Drag, Dragon, Drops, Frog, Frogs, Promo, Proto, Drone, Drown, Togo, Dojo, Drags, Forgo, Argo, DRG, Draco, Provo, Dingo, Dodo, Doge, Drogue, Droid, Pogo, Droll, Droop, Ergo, Grog, LOGO, Dregs, Drool, Dross, Drano, BOGO, Drôme, Frodo, RGO, Dago, Doggo +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:10 +...utput'> "Khal Drogo's favorite word is "athjahakar""- Hi!¶ - Oh, he... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:35:43:20 +...graphical representation):- Hi!¶ - Oh, hey!¶ - What's up?Why are there two empty ... +Possible spelling mistake found. +Предлагаемые варианты: +Bunsen, Dun sen +------------------------ +25-strings/15-escape-characters/en/README.md:69:43:6 +...y are there two empty lines before the *Dunsen* line instead of one? The point is that... +Possible spelling mistake found. +Предлагаемые варианты: +Bunsen, Dun sen +------------------------ +25-strings/15-escape-characters/en/README.md:78:43:9 +...javascript ``` The result:
Du... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:64:43:20 +...ll print it like this:Wh... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/15-escape-characters/en/README.md:66:43:6 +...ss='hexlet-basics-output'>
Dunsen
DunsenPolliver ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:78:43:20 +... ``` The result:Polliver Gregor CleganeNow you understand enoug... +Possible spelling mistake found. +Предлагаемые варианты: +Bunsen, Dun sen +------------------------ +25-strings/15-escape-characters/en/README.md:95:43:9 +...other ```javascript ``` The result:
... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/15-escape-characters/en/README.md:79:43:8 +...Polliver Gregor CleganeNow you ... +Possible spelling mistake found. +Предлагаемые варианты: +Cheswick +------------------------ +25-strings/15-escape-characters/en/README.md:83:43:6 +...regor Clegane
Chiswyck
... +Possible spelling mistake found. +Предлагаемые варианты: +Pol liver +------------------------ +25-strings/15-escape-characters/en/README.md:80:43:7 +...basics-output'> Polliver Gregor Clegane
Chiswyck
Dunsen Chiswyck
Dunsen
Chiswyck
DunsenJoffrey loves u... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:95:43:20 +...avascript ``` The result:Call `` for each name. +Possible spelling mistake found. +Предлагаемые варианты: +Rely, Reply, Zenly +------------------------ +10-basics/10-hello-world/en/README.md:3:43:9 +...rogram will print the following text:Joffrey loves using \nA smal... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +20-arithmetics/27-commutativity/en/README.md:5:43:3 +...commutative operation? Of course not: *2 - 3 ≠ 3 - 2*. In programming, this law app... +If you want to indicate numerical ranges or time ranges, consider using an en dash. +Предлагаемые варианты: +– +------------------------ +20-arithmetics/27-commutativity/en/README.md:5:43:3 +...ive operation? Of course not: *2 - 3 ≠ 3 - 2*. In programming, this law applies jus... +If you want to indicate numerical ranges or time ranges, consider using an en dash. +Предлагаемые варианты: +– +------------------------ +10-basics/50-syntax-errors/en/README.md:8:43:11 +...vaScript, these errors are labelled as "SyntaxError". For technical reasons, this code runn... +Possible spelling mistake found. +Предлагаемые варианты: +Syntax Error +------------------------ +10-basics/45-testing/en/README.md:15:43:9 +... will give you the following message:● test exp... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/45-testing/en/README.md:15:43:20 +...you the following message:In addition to our tes... +Possible spelling mistake found. +Предлагаемые варианты: +hello, cello, Ella, Elle, Elmo, ell, ells, jello, ELO +------------------------ +10-basics/40-instructions/en/README.md:10:43:9 +...s on the screen, one after the other.● test expect(received).toBe(exp... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/45-testing/en/README.md:18:43:2 +...class='hexlet-basics-output'> ● test expect(received).toBe(expected) // Objec... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +10-basics/45-testing/en/README.md:18:43:1 +...exlet-basics-output'> ● test expect(received).toBe(expected) // Object.is eq... +It appears that a white space is missing. +Предлагаемые варианты: + ( +------------------------ +10-basics/45-testing/en/README.md:20:43:2 +...).toBe(expected) // Object.is equality Expected value to be: "Hello, World!... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +10-basics/45-testing/en/README.md:22:43:2 +...pected value to be: "Hello, World!" Received: "ello, World!"In ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +10-basics/45-testing/en/README.md:23:43:4 +...e: "Hello, World!" Received: "ello, World!"Mother of Drago... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/40-instructions/en/README.md:10:43:20 +...reen, one after the other.Theoretically, it's possible t... +Possible spelling mistake found. +Предлагаемые варианты: +Dramas, Decays, Racers, Radars, Discards, Drawers, Granary, Drapery, Dreary, Placards, Tracery, Tramcars, Drachmas, Fracas, Tracers, Drapers, Drays, Bracers, Daycares, Braceros, Dogcarts, Dracaena, Fracases, Dracaenas, Trocars +------------------------ +10-basics/40-instructions/en/README.md:20:43:3 +...on the same string: ```javascript ``` but it's considered bad practice as it's di... +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +But +------------------------ +10-basics/40-instructions/en/EXERCISE.md:1:43:7 +... names, one after the other: "Robert", "Stannis", "Renly". As a result, the editor shou... +Possible spelling mistake found. +Предлагаемые варианты: +Stands, Tennis, Stanzas, Stains, Stances, Stasis, Tannins, Standish, Sunnis, Tannin, Giannis, Ioannis, Joannis, Stanine, Stanines, Statins +------------------------ +10-basics/40-instructions/en/EXERCISE.md:1:43:5 +... after the other: "Robert", "Stannis", "Renly". As a result, the editor should print:... +Possible spelling mistake found. +Предлагаемые варианты: +Rely, Reply, Zenly +------------------------ +10-basics/40-instructions/en/EXERCISE.md:3:43:9 +...As a result, the editor should print:Mother of Dragons. Dracarys!... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/40-instructions/en/README.md:12:43:8 +...xlet-basics-output'> Mother of Dragons. Dracarys!Robert Stannis ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/40-instructions/en/EXERCISE.md:3:43:20 +..., the editor should print:Call `` for each name. +Possible spelling mistake found. +Предлагаемые варианты: +Stands, Tennis, Stanzas, Stains, Stances, Stasis, Tannins, Standish, Sunnis, Tannin, Giannis, Ioannis, Joannis, Stanine, Stanines, Statins +------------------------ +10-basics/40-instructions/en/EXERCISE.md:6:43:5 +...='hexlet-basics-output'> Robert Stannis RenlyRobert Stannis RenlyCall `` ... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/40-instructions/en/EXERCISE.md:5:43:7 +...re class='hexlet-basics-output'> Robert Stannis RenlyHello, World!... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/10-hello-world/en/README.md:3:43:20 +... print the following text:Hello, World!To print some... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +48-conditionals/50-else-if/en/EXERCISE.md:7:43:8 +...alues: ``, ``, ``. Rules: * Friends: 'Karstark', 'Tally' * Enemies: 'Lannister', 'Frey... +Possible spelling mistake found. +Предлагаемые варианты: +Karst ark +------------------------ +50-loops/70-for/en/EXERCISE.md:1:0:7 +Samwell discovered that his messages were being... +Possible spelling mistake found. +Предлагаемые варианты: +Sam well +------------------------ +50-loops/20-aggregation-numbers/en/README.md:21:43:3 +...Thus, for the range from 5 to 7, it is 7 - 5 + 1, or three iterations. The main di... +If you want to indicate numerical ranges or time ranges, consider using an en dash. +Предлагаемые варианты: +– +------------------------ +50-loops/10-while/en/README.md:17:43:9 +...on't be a problem: ```javascript ```1 2 3 finished!... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +50-loops/10-while/en/README.md:17:43:20 +...roblem: ```javascript ```1 2 3 finished!https://repli... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +50-loops/10-while/en/EXERCISE.md:6:43:9 +...o the lower limit. ```javascript ```4
3
2
1... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +50-loops/10-while/en/EXERCISE.md:6:43:20 +... limit. ```javascript ```4+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +40-define-functions/150-define-functions-return/en/EXERCISE.md:1:43:6 +...tion ``, that returns a string 'hurray! hurray! hurray!'. ```javascript ``` +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +Hurray +------------------------ +40-define-functions/150-define-functions-return/en/EXERCISE.md:1:43:6 +... that returns a string 'hurray! hurray! hurray!'. ```javascript ``` +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +Hurray +------------------------ +40-define-functions/100-define-functions-syntax/en/README.md:10:43:9 +.... Its job is to print out a greeting:
3
2
1
finished!Hello, Hexlet!Hello, Hexlet!```javascript ``... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/70-logical-expressions/en/README.md:8:43:9 +... ```javascript ``` Correct answer::1The... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/70-logical-expressions/en/README.md:8:43:20 +...ript ``` Correct answer::1The **OR** operator works... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/70-logical-expressions/en/README.md:19:43:9 +...e of ``. Example: ```javascript ```0The... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/70-logical-expressions/en/README.md:19:43:20 +...xample: ```javascript ```0The **AND** operator work... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/70-logical-expressions/en/README.md:27:43:5 +...d into ``. Those values are considered [falsy](https://developer.mozilla.org/en-US/do... +Possible spelling mistake found. +Предлагаемые варианты: +false, palsy +------------------------ +45-logic/70-logical-expressions/en/README.md:35:43:5 +...vascript ``` If `` is given one of the falsy values, an empty string will be assigne... +Possible spelling mistake found. +Предлагаемые варианты: +false, palsy +------------------------ +45-logic/70-logical-expressions/en/README.md:37:43:5 +...re is a potential bug. If `` contains a falsy value, and it's okay to assign values l... +Possible spelling mistake found. +Предлагаемые варианты: +false, palsy +------------------------ +45-logic/25-logical-operators/en/README.md:33:43:2 +... | |-------| ------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | F... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:33:43:2 +...-----| ------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | FALSE ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:34:43:2 +...---| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | FALSE | | FALSE | TRUE | F... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:35:43:2 +...RUE | FALSE | FALSE | | FALSE | TRUE | FALSE | | FALSE | FALSE | FALSE ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:47:43:2 +... B | |-------|-------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | *... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:47:43:2 +...-----|-------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | **TRUE** ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:48:43:2 +...---| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | **TRUE** | | FALSE | TRUE | *... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:49:43:2 +...RUE | FALSE | **TRUE** | | FALSE | TRUE | **TRUE** | | FALSE | FALSE | FALSE ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:14:43:2 +...dy, 2 persons: 2 x 3 + **remainder 1**. So 7 is not a multiple of 2. * 21 candie... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:16:43:2 +...es, 3 persons: 3 x 7 + **remainder 0**. So 21 is a multiple of 3. * 19 candies, ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:18:43:2 +...es, 5 persons: 5 x 3 + **remainder 4**. So 19 is not a multiple of 5. The `` op... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:34:43:1 +...n. Literally, it means the following: *"calculate the remainder of dividing `` b... +Unpaired symbol: ‘"’ seems to be missing +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:34:43:1 +...return the result of the equality check "*. Another example: write a function to... +Unpaired symbol: ‘"’ seems to be missing +------------------------ +45-logic/15-predicates/en/README.md:6:43:9 +...m the last lesson: ```javascript ```falseThi... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/15-predicates/en/README.md:6:43:20 +...lesson: ```javascript ```falseThis kind of function is ... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/15-predicates/en/README.md:26:43:9 +... it's the word ``: ```javascript ```false+This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/15-predicates/en/README.md:26:43:20 +...ord ``: ```javascript ```false+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/10-bool-type/en/README.md:39:43:9 +...eturn that result. ```javascript ```falseNow... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/10-bool-type/en/README.md:39:43:20 +...result. ```javascript ```falseNow, perform the check on... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/10-bool-type/en/README.md:46:43:9 +...is six months old: ```javascript ```true+This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/10-bool-type/en/README.md:46:43:20 +...hs old: ```javascript ```true+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +38-properties/400-properties-expressions/en/EXERCISE.md:3:43:9 +... constant `` in the following format:First: N Last: ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +38-properties/400-properties-expressions/en/EXERCISE.md:3:43:20 +...` in the following format:First: N Last: tYour task is... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +38-properties/100-properties-syntax/en/README.md:18:43:10 +...their value is ``: ```javascript ``` *Self-сheck. What will `` print for the variable ``... +Possible spelling mistake found. +Предлагаемые варианты: +Spell-check +------------------------ +35-calling-functions/350-stdlib/en/README.md:11:43:2 +...s functions. In particular, the module [fs](https://nodejs.org/api/fs.html) is req... +Possible spelling mistake found. +Предлагаемые варианты: +FS, is, as, us, FM, ft, vs, FRS, CFS, FBS, FCS, FD, FP, FSA, FSU, TFS, WS, fr, ms, FSH, FSI, FSK, FSM, HFS, NFS, phi, sf, ts, LFS, fps, ifs, phys, PS, AFS, As, BFS, BS, CS, Cs, DFS, DS, EFS, ES, Es, F, FA, FAS, FB, FC, FCs, FDS, FES, FF, FFS, FG, FH, FHS, FI, FJ, FL, FLS, FMS, FMs, FN, FNS, FO, FOS, FPS, FPs, FR, FSB, FSC, FSD, FSE, FSF, FSG, FSN, FSP, FSR, FSS, FST, FSW, FW, FX, FY, Fe, Fm, Fr, GFS, HS, IFS, IS, JS, KS, Ks, LS, MFS, MS, Ms, NS, OFS, OS, Os, PFS, RFS, RS, S, SFS, SS, TS, UFS, US, VFS, XS, ZFS, Zs, cs, f, fa, ff, fl, gs, ks, ls, phis, rs, s, FT +------------------------ +35-calling-functions/150-calling-functions-expression/en/EXERCISE.md:3:43:9 +...in the variable `` using this format:First: N Last: ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +35-calling-functions/150-calling-functions-expression/en/EXERCISE.md:3:43:20 +...able `` using this format:First: N Last: tTry to creat... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +33-data-types/10-primitive-data-types/en/README.md:6:43:6 +...type, while numbers refer to Number and BigInt (very large numbers). What are these da... +Possible spelling mistake found. +Предлагаемые варианты: +Big Int, SIGINT +------------------------ +33-data-types/10-primitive-data-types/en/README.md:8:43:6 +... are divided into two types: Number and BigInt. All numbers below a certain threshold ... +Possible spelling mistake found. +Предлагаемые варианты: +Big Int, SIGINT +------------------------ +33-data-types/10-primitive-data-types/en/README.md:8:43:6 +... and all numbers above it belong to the Biglnt type. They're divided this way due to t... +Possible spelling mistake found. +Предлагаемые варианты: +Billet, Bight, Bigot, Piglet, Wiglet, FIGlet, SIGINT +------------------------ +33-data-types/10-primitive-data-types/en/README.md:20:43:6 +...erator: ```javascript ``` The Number, BigInt, and String data types are *primitive* ... +Possible spelling mistake found. +Предлагаемые варианты: +Big Int, SIGINT +------------------------ +30-variables/25-interpolation/en/EXERCISE.md:3:43:9 +...``. The output should look like this:Do you want to ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/25-interpolation/en/EXERCISE.md:3:43:20 +...put should look like this:Do you want to eat, Arya?+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/20-magic-numbers/en/README.md:17:43:14 +...ipt ``` Note the following details: * lowerCamelCase naming * The two new variables are sepa... +Possible spelling mistake found. +------------------------ +30-variables/20-magic-numbers/en/EXERCISE.md:14:43:9 +...les and print them. You'll get this:King Balon the ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/20-magic-numbers/en/EXERCISE.md:14:43:20 +...nt them. You'll get this:King Balon the 6th has 102 rooms. King Balon the 6th has 102 rooms.The vari... +Possible spelling mistake found. +Предлагаемые варианты: +Salon, Bacon, Baron, Baton, Talon, Halon +------------------------ +30-variables/19-naming-style/en/README.md:7:43:9 +... used as a separator. For example, `` * CamelCase - each word in the name is capitalized.... +Possible spelling mistake found. +Предлагаемые варианты: +Camel Case +------------------------ +30-variables/19-naming-style/en/README.md:8:43:14 +... name is capitalized. For example, `` * lowerCamelCase - each word is capitalized except the f... +Possible spelling mistake found. +------------------------ +30-variables/19-naming-style/en/README.md:10:43:9 +...first. For example, `` Javascript uses CamelCase and its variation lowerCamelCase, with ... +Possible spelling mistake found. +Предлагаемые варианты: +Camel Case +------------------------ +30-variables/19-naming-style/en/README.md:10:43:14 +...script uses CamelCase and its variation lowerCamelCase, with the first letter of the first wor... +Possible spelling mistake found. +------------------------ +30-variables/19-naming-style/en/README.md:10:43:14 +... of the first word in lowercase. We use lowerCamelCase for variables. It means we concatenate ... +Possible spelling mistake found. +------------------------ +30-variables/19-naming-style/en/EXERCISE.md:1:43:14 +...first number" and "second number" using lowerCamelCase. Assign `` to the first variable and ``... +Possible spelling mistake found. +------------------------ +30-variables/18-variable-concatenation/en/EXERCISE.md:11:43:9 +...e. The result should look like this:Hello, Joffrey!... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/18-variable-concatenation/en/EXERCISE.md:11:43:20 +...ult should look like this:Hello, Joffrey! Here is important inf... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/15-variables-expressions/en/README.md:36:43:9 +...via concatenation: ```javascript ```The price is 43... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/15-variables-expressions/en/README.md:36:43:20 +...nation: ```javascript ```The price is 431.875 yuanAny... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/15-variables-expressions/en/EXERCISE.md:5:43:9 +...w line. Sample output for 100 euros:125 863.75 125 863.75Suppose that: * 1... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/14-errors/en/README.md:6:43:14 +...bove program terminates with the error *ReferenceError: greeting is not defined*. *ReferenceEr... +Possible spelling mistake found. +Предлагаемые варианты: +Reference Error +------------------------ +30-variables/14-errors/en/README.md:6:43:14 +...erenceError: greeting is not defined*. *ReferenceError* means that the code uses a name (calle... +Possible spelling mistake found. +Предлагаемые варианты: +Reference Error +------------------------ +30-variables/14-errors/en/EXERCISE.md:5:43:9 +...'; The result should look like this:Targaryen and D... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/14-errors/en/EXERCISE.md:5:43:20 +...ult should look like this:Targaryen and Dragon+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/13-variables-naming/en/README.md:15:43:10 +... previous quarter?* ```javascript ``` Self-сheck. Think of a name for the variable that ... +Possible spelling mistake found. +Предлагаемые варианты: +Spell-check +------------------------ +25-strings/30-encoding/en/EXERCISE.md:8:43:3 +...We are interested in the decimal code (*dec* or *decimal*). Using the example abov... +Possible spelling mistake found. +Предлагаемые варианты: +DEC, Dec, deck, Del, den, Dee, IEC, NEC, sec, AEC, DAC, DCC, DMC, DRC, DSC, EEC, dew, DECA, DNC, DTC, Sec, deg, doc, rec, DDC, DBC, BEC, CDEC, CEC, DC, DE, DEA, DEB, DECT, DECs, DEG, DEI, DEL, DEM, DEP, DEQ, DES, DET, DEU, DFC, DHC, DIC, DLC, DOC, DPC, DVC, Dem, EC, FEC, HEC, LEC, MEC, OEC, PEC, REC, SEC, TEC, UEC, WEC, YEC, deb, def, dep, dev, DEX, he, we, be, get, her, me, new, day, did, due, set, yes, died, do, does, few, led, men, see, BBC, deal, idea, let, red, sea, ten, yet, BC, DVD, Dr, dead, deep, die, disc, dog, dry, etc, ex, hey, ice, key, leg, web, EU, Lee, PC, bed, debt, dies, diet, drew, duo, fed, fee, jet, met, neck, net, tea, wet, AFC, Ben, CBC, Dan, Dean, FCC, Mac, arc, decay, deer, demo, deny, desk, dock, duel, duet, neo, pen, per, pet, tech, Drew, IOC, LED, MCC, NFC, NYC, PRC, ROC, Rev, Ted, UTC, Web, Wei, ace, bee, bet, dad, dam, deaf, dean, decks, deed, dice, dig, dot, dub, duck, dug, dye, hoc, ref, sect, sic, ADC, APC, ATC, Alec, CCC, CDC, CPC, DA, DDR, DDT, DL, DM, DNS, DRM, DSM, DSO, DSP, DT, DX, Devi, Eden, Feb, GC, GMC, JC, Jew, MSC, Mel, NGC, NPC, OEM, PAC, PCC, PET, PFC, PVC, QC, Rex, Rey, TLC, TTC, UNC, Zen, beg, codec, dB, dear, decor, dim, din, dip, duct, dues, dyed, dyes, eds, gel, gem, sac, spec, wed, yen, AEG, APEC, Aden, BMC, CAC, CEA, CFC, CIC, CNC, CRC, CSC, CTC, DAT, DCI, DG, DLR, DMA, DMS, DMZ, DSL, DSS, DST, DTM, DTS, DUI, DUP, Decca, Dell, Deng, Doe, Dow, Dyer, ECG, EEA, ESC, Eco, FTC, GCC, GRC, Geo, HTC, IFC, IPC, ITC, Jen, KFC, LBC, LCC, Lea, Len, Lew, MBC, MDC, MHC, MeV, Meg, NAC, NEA, NRC, OPEC, OTC, Oder, PNC, PTC, Peck, RAC, RBC, REM, RPC, RSC, Rep, SBC, SCC, SLC, SRC, TAC, THC, TeX, UE, UPC, VOC, WAC, WC, WTC, decoy, deem, defy, dens, eel, fen, gen, hen, hex, med, mic, nee, ode, pea, peg, pep, rep, seq, tee, vet, wee, AEF, AGC, Beck, CEP, CVC, DBA, DCE, DCL, DCM, DDS, DKK, DLA, DLL, DMCA, DME, DMG, DMK, DNR, DOA, DPI, DQ, DRG, DRI, DSA, DSB, DSE, DTI, DVR, DWM, Desi, Diem, Dir, FAC, FDIC, FMC, FRC, GBC, GED, GPC, HCC, HFC, HMC, IAC, IDC, IEA, IED, IEP, IMC, JSC, JVC, Jed, KBC, KSC, LHC, LRC, LSC, MTC, MVC, MWC, NDC, NEP, OE, PMC, PUC, QED, RDC, RMC, RNC, SFC, SGC, SNC, TOC, TPC, TRC, TUC, UDC, beck, decal, deft, deli, dell, dent, doe, dud, eh, hem, keg, lac, odes, peck, pew, pic, rem, sew, ADAC, BNC, CJC, CWC, DCB, DCF, DDA, DDB, DDD, DDE, DLM, DLS, DMD, DMP, DMV, DND, DOB, DPD, DPT, DRA, DSD, DSR, DTA, DTP, DVT, DWI, DWT, Debs, ECD, EEOC, EIC, Eu, FDC, FNC, Fez, GEF, GFC, JCC, Keck, LDC, LFC, MNC, Mex, PEO, SDC, SVC, TBC, VEB, dace, decry, dept, deuce, doer, dz, exec, fem, gee, heck, reg, rel, secs, tel, zen, CXC, DCD, DLI, DPN, DPs, DRV, DVM, DVP, DVS, DWG, Dena, HIC, Nev, PGC, TEF, Wed, dBm, dab, docs, duh, dyer, hep, hew, idem, mew, soc, EEO, dewy, ides, msec, neg, ted, vac, vex, ceca, debs, decaf, ecu, educ, eek, recd, yep, ABC, AMC, CEO, DJ, DJs, DNA, ECW, ICC, Leo, NBC, Ned, USC, Vic, dbl, deice, dob, doz, dpt, née, Xes, dds, A9C, AAC, AAEC, AC, ACC, ADDEC, AE, AEA, AEB, AED, AEE, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEZ, AHC, AIC, AJC, AJEC, AKC, ALC, AMDEC, ANC, ANEC, AOC, AQC, ARC, ASC, AUC, AVC, AWC, AXC, AYC, Ac, BAC, BCC, BDC, BDE, BEA, BEAC, BEB, BECS, BED, BEE, BEF, BEH, BEI, BEK, BEM, BEO, BEP, BEQ, BER, BES, BET, BEU, BEV, BEW, BEX, BFC, BGC, BHC, BIC, BJC, BKC, BLC, BOC, BPC, BRC, BSC, BSc, BTC, BTEC, BUC, BVC, BWC, BXC, BYC, BZC, Be, Bic, C, C&C, C2C, CC, CDAC, CDE, CE, CEB, CED, CEE, CEF, CEG, CEI, CEJ, CEL, CEM, CEN, CEQ, CER, CES, CESC, CET, CEU, CEV, CGC, CHC, CLC, CMC, COC, CQC, CREC, CSEC, CUC, CZC, Ce, D, D&D, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D2D, D30, D31, D32, D33, D34, D35, D36, D37, D38, D39, D40, D41, D42, D45, D46, D48, D50, D51, D52, D55, D56, D57, D58, D59, D60, D61, D62, D63, D64, D65, D66, D67, D68, D70, D71, D72, D73, D74, D76, D78, D79, D8, D80, D82, D83, D86, D89, D90, D91, D96, D97, D99, DAA, DAB, DACA, DACH, DAE, DAEU, DAF, DAI, DAJ, DAK, DAL, DAP, DAR, DAU, DAV, DAX, DB7, DB9, DBB, DBCS, DBD, DBF, DBL, DBO, DBP, DBQ, DBR, DBU, DBZ, DCA, DCK, DCN, DCO, DCP, DCR, DCS, DCT, DCU, DD, DDEA, DDH, DDHC, DDI, DDL, DDLC, DDM, DDO, DDV, DECed, DEEE, DEET, DELE, DELF, DESE, DEUG, DEXA, DFA, DFB, DFCO, DFE, DFF, DFG, DFI, DFL, DFM, DFN, DFO, DFP, DFS, DFT, DFV, DFW, DGA, DGAC, DGD, DGE, DGF, DGH, DGI, DGP, DGS, DGT, DH, DHA, DHCP, DHEA, DHH, DHI, DHL, DHM, DHP, DHR, DHS, DHT, DI, DID, DIF, DIL, DIN, DIP, DIR, DISEC, DIV, DIY, DJF, DJG, DJI, DJO, DJT, DJU, DJed, DK, DKA, DKB, DKP, DKR, DKZ, DLEM, DLF, DLG, DLH, DLP, DLT, DMF, DMFC, DMI, DMM, DMO, DMPC, DMR, DMX, DMed, DMs, DN, DNB, DNF, DNI, DNK, DNL, DNP, DNT, DO, DOCX, DOD, DOE, DOF, DOH, DOHC, DOI, DOJ, DOL, DOM, DON, DOP, DOS, DOT, DP, DPA, DPB, DPE, DPH, DPIC, DPO, DPS, DPU, DPW, DR, DR1, DRAC, DRH, DRP, DRS, DRT, DS, DSF, DSG, DSI, DSK, DSN, DSQ, DSU, DSV, DTT, DTU, DTV, DTW, DUD, DUS, DVA, DVB, DVI, DWH, DWV, DXB, DXF, DXM, DXO, DZA, DZD, DZI, DZO, Day, Demi, Dems, Deon, Depp, Di, Dick, Dis, Dix, DnD, DoD, DoJ, DoS, Don, Dot, Du, Dy, E, EAC, EBC, EC1, EC4, ECA, ECB, ECC, ECE, ECL, ECM, ECN, ECO, ECP, ECR, ECS, ECT, EDC, EDEHC, EE, EED, EEE, EEG, EEGC, EEK, EEM, EEP, EER, EFC, EG, EGC, EI, EK, EM, EMC, EN, ENC, EO, EOC, EP, ER, ERC, ES, ET, EUC, EV, EW, EX, EY, EZ, Ed, El, Er, Es, Esc, FC, FD&C, FDES, FEB, FECI, FECQ, FED, FEF, FEI, FEM, FEN, FEP, FER, FERC, FES, FET, FGC, FHC, FIC, FOC, FSC, Fe, Fed, GAC, GAEC, GDC, GDE, GE, GEA, GEH, GEI, GEM, GEQ, GES, GET, GEV, GGC, GHC, GIEC, GNC, GPEC, GREC, GSC, GUC, Ge, Gen, Ger, HAC, HC, HDE, HDFC, HDLC, HEB, HEF, HEL, HEO, HER, HES, HEV, HLC, HOC, HPC, HRC, HSC, He, Heb, IBC, IC, IDE, IDES, IDEs, IDed, IE, IECA, IEF, IEG, IEM, IES, IGC, IIC, ILC, INC, IRC, IREC, ISC, IWC, IXC, Ice, Inc, JAC, JDBC, JDE, JE, JED, JEF, JEV, JFC, JIC, JOC, JRC, JTC, Jeb, Jem, KC, KCC, KE, KEA, KED, KEF, KEM, KEN, KER, KES, KET, KLC, KWC, KYC, Ken, Key, LC, LDE, LE, LEA, LEB, LEDC, LEF, LEJ, LEM, LEP, LER, LES, LEV, LGC, LIC, LLC, LMC, LOC, LPC, LTC, Le, Les, LoC, Luc, Léa, Léo, MC, MDE, ME, MEA, MEB, MED, MEDC, MEF, MEG, MEL, MEN, MEP, MER, MES, MET, MFC, MJC, MLC, MMC, MOC, MPC, MRC, MSc, MUC, Me, NC, NCC, NDRC, NE, NED, NEE, NEH, NEM, NEN, NER, NHC, NIC, NMC, NSC, NTC, Ne, Neb, Neo, OBC, OC, OCC, ODBC, ODC, ODEM, OEA, OEB, OECD, OED, OEP, OIC, OJC, OMC, OSC, PBC, PCEC, PDC, PE, PEA, PEB, PED, PEE, PEF, PEGC, PEI, PEK, PEL, PEM, PEN, PEOC, PEP, PER, PES, PESC, PEV, PHC, PIC, PJC, PLC, PNEC, POC, PPC, PQC, PSC, Peg, Pei, Pen, Pfc, PoC, PwC, QE2, QEV, QFC, QPC, QRC, RC, RCC, RE, REA, RED, REG, REI, REL, REP, RER, RES, RET, REV, REX, RFC, RHC, RIC, RLC, RRC, RTC, RUC, Re, SAC, SADEC, SC, SDE, SDEI, SDLC, SDPC, SE, SEA, SEAC, SEB, SEBC, SEF, SEG, SEJ, SEK, SEL, SEM, SEO, SEP, SER, SES, SET, SEU, SEV, SEX, SEY, SEZ, SIC, SMC, SOC, SPC, STC, SYC, Sc, Se, Sen, Sep, Set, SoC, Soc, T&C, TC, TCC, TCEC, TDC, TDE, TEB, TECS, TED, TEE, TEEC, TEI, TEM, TEP, TEQ, TER, TES, TEU, TEV, TFC, TIC, TJC, TMC, TNC, TQC, TSC, TWC, TYC, TZC, Tc, Te, Tet, Tex, ToC, UAC, UBC, UC, UCC, UED, UEM, UER, UES, UET, UFC, UGC, UIC, ULC, UMC, UQC, UUC, UVC, UWC, VAC, VC, VCC, VDC, VE, VEI, VES, VHC, VLC, VMC, VNC, VPC, VSC, VTC, W3C, WAEC, WBC, WCC, WDC, WECA, WEG, WET, WFC, WGC, WIC, WPC, WRC, WSC, WWC, Wac, XEU, XIC, XTC, Xe, YAC, YBC, YC, YEM, ZAC, ZC, ZED, ZEE, ZEF, ZEP, ac, bc, bey, c, cc, d, dag, db, dd, dded, deps, derv, devs, dick, dict, dis, div, dm, dmed, dms, don, dos, dox, dpi, drey, dun, e, eV, ea, eco, ed, em, en, enc, er, fer, fey, fez, geo, hes, inc, kc, ken, lea, lech, lee, lei, mac, meg, meh, mes, né, orc, pc, pecs, pee, plc, re, rect, req, res, rev, secy, sen, sex, src, tic, ve, veg, ye, yea, yer, yew, zed, °C, écu, DAW, DTD, EQC, KDE, LXC, PECL, QVC, a/c +------------------------ +25-strings/20-string-concatenation/en/EXERCISE.md:6:35:5 +Print the following code ``` ``` using concatenation. +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +Using +------------------------ +25-strings/15-escape-characters/en/README.md:35:43:9 +...ey have no graphical representation):- Hi!¶ - Oh, he... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:35:43:20 +...graphical representation):- Hi!¶ - Oh, hey!¶ - What's up?Why are there two empty ... +Possible spelling mistake found. +Предлагаемые варианты: +Bunsen, Dun sen +------------------------ +25-strings/15-escape-characters/en/README.md:69:43:6 +...y are there two empty lines before the *Dunsen* line instead of one? The point is that... +Possible spelling mistake found. +Предлагаемые варианты: +Bunsen, Dun sen +------------------------ +25-strings/15-escape-characters/en/README.md:78:43:9 +...javascript ``` The result:
Du... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:64:43:20 +...ll print it like this:Wh... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/15-escape-characters/en/README.md:66:43:6 +...ss='hexlet-basics-output'>
Dunsen
DunsenPolliver ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:78:43:20 +... ``` The result:Polliver Gregor CleganeNow you understand enoug... +Possible spelling mistake found. +Предлагаемые варианты: +Bunsen, Dun sen +------------------------ +25-strings/15-escape-characters/en/README.md:95:43:9 +...other ```javascript ``` The result:
... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/15-escape-characters/en/README.md:79:43:8 +...Polliver Gregor CleganeNow you ... +Possible spelling mistake found. +Предлагаемые варианты: +Cheswick +------------------------ +25-strings/15-escape-characters/en/README.md:83:43:6 +...regor Clegane
Chiswyck
... +Possible spelling mistake found. +Предлагаемые варианты: +Pol liver +------------------------ +25-strings/15-escape-characters/en/README.md:80:43:7 +...basics-output'> Polliver Gregor Clegane
Chiswyck
Dunsen Chiswyck
Dunsen
Chiswyck
DunsenJoffrey loves u... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:95:43:20 +...avascript ``` The result:Joffrey loves using \nA smal... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/10-quotes/en/EXERCISE.md:8:43:9 +... beginning and the end of the phrase:"Khal Drogo's f... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/10-quotes/en/EXERCISE.md:8:43:20 +...and the end of the phrase:Call `` for each name. +Possible spelling mistake found. +Предлагаемые варианты: +Rely, Reply, Zenly +------------------------ +10-basics/10-hello-world/en/README.md:3:43:9 +...rogram will print the following text:"Khal Drogo's favorite word is "athja... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:1 +...se:+Unpaired symbol: ‘"’ seems to be missing +------------------------ +20-arithmetics/27-commutativity/en/README.md:5:43:3 +...commutative operation? Of course not: *2 - 3 ≠ 3 - 2*. In programming, this law app... +If you want to indicate numerical ranges or time ranges, consider using an en dash. +Предлагаемые варианты: +– +------------------------ +20-arithmetics/27-commutativity/en/README.md:5:43:3 +...ive operation? Of course not: *2 - 3 ≠ 3 - 2*. In programming, this law applies jus... +If you want to indicate numerical ranges or time ranges, consider using an en dash. +Предлагаемые варианты: +– +------------------------ +10-basics/50-syntax-errors/en/README.md:8:43:11 +...vaScript, these errors are labelled as "SyntaxError". For technical reasons, this code runn... +Possible spelling mistake found. +Предлагаемые варианты: +Syntax Error +------------------------ +10-basics/45-testing/en/README.md:15:43:9 +... will give you the following message:"Khal Drogo's favorite word is "athjahaka... +Unpaired symbol: ‘"’ seems to be missing +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:4 +...e:+Possible spelling mistake found. +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:1 +...al Drogo's favorite word is "athjahakar"""Khal Drogo's favorite word is "athjahakar"" ... +Possible spelling mistake found. +Предлагаемые варианты: +Khan, Kcal, Hal, KAL +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:5 +...pre class='hexlet-basics-output'> "Khal Drogo's favorite word is "athjahakar""... +Possible spelling mistake found. +Предлагаемые варианты: +Dog, Drop, Drug, Dogs, Drove, Drugs, Logo, Diego, Drag, Dragon, Drops, Frog, Frogs, Promo, Proto, Drone, Drown, Togo, Dojo, Drags, Forgo, Argo, DRG, Draco, Provo, Dingo, Dodo, Doge, Drogue, Droid, Pogo, Droll, Droop, Ergo, Grog, LOGO, Dregs, Drool, Dross, Drano, BOGO, Drôme, Frodo, RGO, Dago, Doggo +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:10 +...utput'> "Khal Drogo's favorite word is "athjahakar""● test exp... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/45-testing/en/README.md:15:43:20 +...you the following message:In addition to our tes... +Possible spelling mistake found. +Предлагаемые варианты: +hello, cello, Ella, Elle, Elmo, ell, ells, jello, ELO +------------------------ +10-basics/40-instructions/en/README.md:10:43:9 +...s on the screen, one after the other.● test expect(received).toBe(exp... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/45-testing/en/README.md:18:43:2 +...class='hexlet-basics-output'> ● test expect(received).toBe(expected) // Objec... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +10-basics/45-testing/en/README.md:18:43:1 +...exlet-basics-output'> ● test expect(received).toBe(expected) // Object.is eq... +It appears that a white space is missing. +Предлагаемые варианты: + ( +------------------------ +10-basics/45-testing/en/README.md:20:43:2 +...).toBe(expected) // Object.is equality Expected value to be: "Hello, World!... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +10-basics/45-testing/en/README.md:22:43:2 +...pected value to be: "Hello, World!" Received: "ello, World!"In ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +10-basics/45-testing/en/README.md:23:43:4 +...e: "Hello, World!" Received: "ello, World!"Mother of Drago... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/40-instructions/en/README.md:10:43:20 +...reen, one after the other.Theoretically, it's possible t... +Possible spelling mistake found. +Предлагаемые варианты: +Dramas, Decays, Racers, Radars, Discards, Drawers, Granary, Drapery, Dreary, Placards, Tracery, Tramcars, Drachmas, Fracas, Tracers, Drapers, Drays, Bracers, Daycares, Braceros, Dogcarts, Dracaena, Fracases, Dracaenas, Trocars +------------------------ +10-basics/40-instructions/en/README.md:20:43:3 +...on the same string: ```javascript ``` but it's considered bad practice as it's di... +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +But +------------------------ +10-basics/40-instructions/en/EXERCISE.md:1:43:7 +... names, one after the other: "Robert", "Stannis", "Renly". As a result, the editor shou... +Possible spelling mistake found. +Предлагаемые варианты: +Stands, Tennis, Stanzas, Stains, Stances, Stasis, Tannins, Standish, Sunnis, Tannin, Giannis, Ioannis, Joannis, Stanine, Stanines, Statins +------------------------ +10-basics/40-instructions/en/EXERCISE.md:1:43:5 +... after the other: "Robert", "Stannis", "Renly". As a result, the editor should print:... +Possible spelling mistake found. +Предлагаемые варианты: +Rely, Reply, Zenly +------------------------ +10-basics/40-instructions/en/EXERCISE.md:3:43:9 +...As a result, the editor should print:Mother of Dragons. Dracarys!... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/40-instructions/en/README.md:12:43:8 +...xlet-basics-output'> Mother of Dragons. Dracarys!Robert Stannis ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/40-instructions/en/EXERCISE.md:3:43:20 +..., the editor should print:Call `` for each name. +Possible spelling mistake found. +Предлагаемые варианты: +Stands, Tennis, Stanzas, Stains, Stances, Stasis, Tannins, Standish, Sunnis, Tannin, Giannis, Ioannis, Joannis, Stanine, Stanines, Statins +------------------------ +10-basics/40-instructions/en/EXERCISE.md:6:43:5 +...='hexlet-basics-output'> Robert Stannis RenlyRobert Stannis RenlyCall `` ... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/40-instructions/en/EXERCISE.md:5:43:7 +...re class='hexlet-basics-output'> Robert Stannis RenlyHello, World!... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/10-hello-world/en/README.md:3:43:20 +... print the following text:Hello, World!To print some... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output48-conditionals/50-else-if/en/EXERCISE.md:7:43:8 +...alues: ``, ``, ``. Rules: * Friends: 'Karstark', 'Tally' * Enemies: 'Lannister', 'Frey... +Possible spelling mistake found. +Предлагаемые варианты: +Karst ark +------------------------ +50-loops/70-for/en/EXERCISE.md:1:0:7 +Samwell discovered that his messages were being... +Possible spelling mistake found. +Предлагаемые варианты: +Sam well +------------------------ +50-loops/20-aggregation-numbers/en/README.md:21:43:3 +...Thus, for the range from 5 to 7, it is 7 - 5 + 1, or three iterations. The main di... +If you want to indicate numerical ranges or time ranges, consider using an en dash. +Предлагаемые варианты: +– +------------------------ +45-logic/70-logical-expressions/en/README.md:8:43:9 +... ```javascript ``` Correct answer::1The... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/70-logical-expressions/en/README.md:8:43:20 +...ript ``` Correct answer::1The **OR** operator works... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/70-logical-expressions/en/README.md:19:43:9 +...e of ``. Example: ```javascript ```0The... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/70-logical-expressions/en/README.md:19:43:20 +...xample: ```javascript ```0The **AND** operator work... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/70-logical-expressions/en/README.md:27:43:5 +...d into ``. Those values are considered [falsy](https://developer.mozilla.org/en-US/do... +Possible spelling mistake found. +Предлагаемые варианты: +false, palsy +------------------------ +45-logic/70-logical-expressions/en/README.md:35:43:5 +...vascript ``` If `` is given one of the falsy values, an empty string will be assigne... +Possible spelling mistake found. +Предлагаемые варианты: +false, palsy +------------------------ +45-logic/70-logical-expressions/en/README.md:37:43:5 +...re is a potential bug. If `` contains a falsy value, and it's okay to assign values l... +Possible spelling mistake found. +Предлагаемые варианты: +false, palsy +------------------------ +50-loops/10-while/en/README.md:17:43:9 +...on't be a problem: ```javascript ```1 2 3 finished!... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +50-loops/10-while/en/README.md:17:43:20 +...roblem: ```javascript ```1 2 3 finished!https://repli... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +50-loops/10-while/en/EXERCISE.md:6:43:9 +...o the lower limit. ```javascript ```4
3
2
1... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +50-loops/10-while/en/EXERCISE.md:6:43:20 +... limit. ```javascript ```4+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:14:43:2 +...dy, 2 persons: 2 x 3 + **remainder 1**. So 7 is not a multiple of 2. * 21 candie... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:16:43:2 +...es, 3 persons: 3 x 7 + **remainder 0**. So 21 is a multiple of 3. * 19 candies, ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:18:43:2 +...es, 5 persons: 5 x 3 + **remainder 4**. So 19 is not a multiple of 5. The `` op... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:34:43:1 +...n. Literally, it means the following: *"calculate the remainder of dividing `` b... +Unpaired symbol: ‘"’ seems to be missing +------------------------ +45-logic/20-logic-combine-expressions/en/README.md:34:43:1 +...return the result of the equality check "*. Another example: write a function to... +Unpaired symbol: ‘"’ seems to be missing +------------------------ +45-logic/15-predicates/en/README.md:6:43:9 +...m the last lesson: ```javascript ```
3
2
1
finished!falseThi... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/15-predicates/en/README.md:6:43:20 +...lesson: ```javascript ```falseThis kind of function is ... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/15-predicates/en/README.md:26:43:9 +... it's the word ``: ```javascript ```false+This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/15-predicates/en/README.md:26:43:20 +...ord ``: ```javascript ```false+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/25-logical-operators/en/README.md:33:43:2 +... | |-------| ------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | F... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:33:43:2 +...-----| ------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | FALSE ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:34:43:2 +...---| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | FALSE | | FALSE | TRUE | F... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:35:43:2 +...RUE | FALSE | FALSE | | FALSE | TRUE | FALSE | | FALSE | FALSE | FALSE ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:47:43:2 +... B | |-------|-------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | *... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:47:43:2 +...-----|-------|----------| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | **TRUE** ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:48:43:2 +...---| | TRUE | TRUE | **TRUE** | | TRUE | FALSE | **TRUE** | | FALSE | TRUE | *... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/25-logical-operators/en/README.md:49:43:2 +...RUE | FALSE | **TRUE** | | FALSE | TRUE | **TRUE** | | FALSE | FALSE | FALSE ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +45-logic/10-bool-type/en/README.md:39:43:9 +...eturn that result. ```javascript ```falseNow... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/10-bool-type/en/README.md:39:43:20 +...result. ```javascript ```falseNow, perform the check on... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +45-logic/10-bool-type/en/README.md:46:43:9 +...is six months old: ```javascript ```true+This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +45-logic/10-bool-type/en/README.md:46:43:20 +...hs old: ```javascript ```true+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +40-define-functions/150-define-functions-return/en/EXERCISE.md:1:43:6 +...tion ``, that returns a string 'hurray! hurray! hurray!'. ```javascript ``` +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +Hurray +------------------------ +40-define-functions/150-define-functions-return/en/EXERCISE.md:1:43:6 +... that returns a string 'hurray! hurray! hurray!'. ```javascript ``` +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +Hurray +------------------------ +38-properties/400-properties-expressions/en/EXERCISE.md:3:43:9 +... constant `` in the following format:First: N Last: ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +38-properties/400-properties-expressions/en/EXERCISE.md:3:43:20 +...` in the following format:First: N Last: tYour task is... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +40-define-functions/100-define-functions-syntax/en/README.md:10:43:9 +.... Its job is to print out a greeting:Hello, Hexlet!Hello, Hexlet!```javascript ``... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +35-calling-functions/350-stdlib/en/README.md:11:43:2 +...s functions. In particular, the module [fs](https://nodejs.org/api/fs.html) is req... +Possible spelling mistake found. +Предлагаемые варианты: +FS, is, as, us, FM, ft, vs, FRS, CFS, FBS, FCS, FD, FP, FSA, FSU, TFS, WS, fr, ms, FSH, FSI, FSK, FSM, HFS, NFS, phi, sf, ts, LFS, fps, ifs, phys, PS, AFS, As, BFS, BS, CS, Cs, DFS, DS, EFS, ES, Es, F, FA, FAS, FB, FC, FCs, FDS, FES, FF, FFS, FG, FH, FHS, FI, FJ, FL, FLS, FMS, FMs, FN, FNS, FO, FOS, FPS, FPs, FR, FSB, FSC, FSD, FSE, FSF, FSG, FSN, FSP, FSR, FSS, FST, FSW, FW, FX, FY, Fe, Fm, Fr, GFS, HS, IFS, IS, JS, KS, Ks, LS, MFS, MS, Ms, NS, OFS, OS, Os, PFS, RFS, RS, S, SFS, SS, TS, UFS, US, VFS, XS, ZFS, Zs, cs, f, fa, ff, fl, gs, ks, ls, phis, rs, s, FT +------------------------ +38-properties/100-properties-syntax/en/README.md:18:43:10 +...their value is ``: ```javascript ``` *Self-сheck. What will `` print for the variable ``... +Possible spelling mistake found. +Предлагаемые варианты: +Spell-check +------------------------ +35-calling-functions/150-calling-functions-expression/en/EXERCISE.md:3:43:9 +...in the variable `` using this format:First: N Last: ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +35-calling-functions/150-calling-functions-expression/en/EXERCISE.md:3:43:20 +...able `` using this format:First: N Last: tTry to creat... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +33-data-types/10-primitive-data-types/en/README.md:6:43:6 +...type, while numbers refer to Number and BigInt (very large numbers). What are these da... +Possible spelling mistake found. +Предлагаемые варианты: +Big Int, SIGINT +------------------------ +33-data-types/10-primitive-data-types/en/README.md:8:43:6 +... are divided into two types: Number and BigInt. All numbers below a certain threshold ... +Possible spelling mistake found. +Предлагаемые варианты: +Big Int, SIGINT +------------------------ +33-data-types/10-primitive-data-types/en/README.md:8:43:6 +... and all numbers above it belong to the Biglnt type. They're divided this way due to t... +Possible spelling mistake found. +Предлагаемые варианты: +Billet, Bight, Bigot, Piglet, Wiglet, FIGlet, SIGINT +------------------------ +33-data-types/10-primitive-data-types/en/README.md:20:43:6 +...erator: ```javascript ``` The Number, BigInt, and String data types are *primitive* ... +Possible spelling mistake found. +Предлагаемые варианты: +Big Int, SIGINT +------------------------ +30-variables/25-interpolation/en/EXERCISE.md:3:43:9 +...``. The output should look like this:Do you want to ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/25-interpolation/en/EXERCISE.md:3:43:20 +...put should look like this:Do you want to eat, Arya?+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/20-magic-numbers/en/README.md:17:43:14 +...ipt ``` Note the following details: * lowerCamelCase naming * The two new variables are sepa... +Possible spelling mistake found. +------------------------ +30-variables/20-magic-numbers/en/EXERCISE.md:14:43:9 +...les and print them. You'll get this:King Balon the ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/20-magic-numbers/en/EXERCISE.md:14:43:20 +...nt them. You'll get this:King Balon the 6th has 102 rooms. King Balon the 6th has 102 rooms.The vari... +Possible spelling mistake found. +Предлагаемые варианты: +Salon, Bacon, Baron, Baton, Talon, Halon +------------------------ +30-variables/19-naming-style/en/README.md:7:43:9 +... used as a separator. For example, `` * CamelCase - each word in the name is capitalized.... +Possible spelling mistake found. +Предлагаемые варианты: +Camel Case +------------------------ +30-variables/19-naming-style/en/README.md:8:43:14 +... name is capitalized. For example, `` * lowerCamelCase - each word is capitalized except the f... +Possible spelling mistake found. +------------------------ +30-variables/19-naming-style/en/README.md:10:43:9 +...first. For example, `` Javascript uses CamelCase and its variation lowerCamelCase, with ... +Possible spelling mistake found. +Предлагаемые варианты: +Camel Case +------------------------ +30-variables/19-naming-style/en/README.md:10:43:14 +...script uses CamelCase and its variation lowerCamelCase, with the first letter of the first wor... +Possible spelling mistake found. +------------------------ +30-variables/19-naming-style/en/README.md:10:43:14 +... of the first word in lowercase. We use lowerCamelCase for variables. It means we concatenate ... +Possible spelling mistake found. +------------------------ +30-variables/19-naming-style/en/EXERCISE.md:1:43:14 +...first number" and "second number" using lowerCamelCase. Assign `` to the first variable and ``... +Possible spelling mistake found. +------------------------ +30-variables/15-variables-expressions/en/README.md:36:43:9 +...via concatenation: ```javascript ```The price is 43... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/15-variables-expressions/en/README.md:36:43:20 +...nation: ```javascript ```The price is 431.875 yuanAny... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/15-variables-expressions/en/EXERCISE.md:5:43:9 +...w line. Sample output for 100 euros:125 863.75 125 863.75Suppose that: * 1... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/18-variable-concatenation/en/EXERCISE.md:11:43:9 +...e. The result should look like this:Hello, Joffrey!... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/18-variable-concatenation/en/EXERCISE.md:11:43:20 +...ult should look like this:Hello, Joffrey! Here is important inf... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/14-errors/en/README.md:6:43:14 +...bove program terminates with the error *ReferenceError: greeting is not defined*. *ReferenceEr... +Possible spelling mistake found. +Предлагаемые варианты: +Reference Error +------------------------ +30-variables/14-errors/en/README.md:6:43:14 +...erenceError: greeting is not defined*. *ReferenceError* means that the code uses a name (calle... +Possible spelling mistake found. +Предлагаемые варианты: +Reference Error +------------------------ +30-variables/14-errors/en/EXERCISE.md:5:43:9 +...'; The result should look like this:Targaryen and D... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +30-variables/14-errors/en/EXERCISE.md:5:43:20 +...ult should look like this:Targaryen and Dragon+Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +30-variables/13-variables-naming/en/README.md:15:43:10 +... previous quarter?* ```javascript ``` Self-сheck. Think of a name for the variable that ... +Possible spelling mistake found. +Предлагаемые варианты: +Spell-check +------------------------ +20-arithmetics/27-commutativity/en/README.md:5:43:3 +...commutative operation? Of course not: *2 - 3 ≠ 3 - 2*. In programming, this law app... +If you want to indicate numerical ranges or time ranges, consider using an en dash. +Предлагаемые варианты: +– +------------------------ +20-arithmetics/27-commutativity/en/README.md:5:43:3 +...ive operation? Of course not: *2 - 3 ≠ 3 - 2*. In programming, this law applies jus... +If you want to indicate numerical ranges or time ranges, consider using an en dash. +Предлагаемые варианты: +– +------------------------ +25-strings/30-encoding/en/EXERCISE.md:8:43:3 +...We are interested in the decimal code (*dec* or *decimal*). Using the example abov... +Possible spelling mistake found. +Предлагаемые варианты: +DEC, Dec, deck, Del, den, Dee, IEC, NEC, sec, AEC, DAC, DCC, DMC, DRC, DSC, EEC, dew, DECA, DNC, DTC, Sec, deg, doc, rec, DDC, DBC, BEC, CDEC, CEC, DC, DE, DEA, DEB, DECT, DECs, DEG, DEI, DEL, DEM, DEP, DEQ, DES, DET, DEU, DFC, DHC, DIC, DLC, DOC, DPC, DVC, Dem, EC, FEC, HEC, LEC, MEC, OEC, PEC, REC, SEC, TEC, UEC, WEC, YEC, deb, def, dep, dev, DEX, he, we, be, get, her, me, new, day, did, due, set, yes, died, do, does, few, led, men, see, BBC, deal, idea, let, red, sea, ten, yet, BC, DVD, Dr, dead, deep, die, disc, dog, dry, etc, ex, hey, ice, key, leg, web, EU, Lee, PC, bed, debt, dies, diet, drew, duo, fed, fee, jet, met, neck, net, tea, wet, AFC, Ben, CBC, Dan, Dean, FCC, Mac, arc, decay, deer, demo, deny, desk, dock, duel, duet, neo, pen, per, pet, tech, Drew, IOC, LED, MCC, NFC, NYC, PRC, ROC, Rev, Ted, UTC, Web, Wei, ace, bee, bet, dad, dam, deaf, dean, decks, deed, dice, dig, dot, dub, duck, dug, dye, hoc, ref, sect, sic, ADC, APC, ATC, Alec, CCC, CDC, CPC, DA, DDR, DDT, DL, DM, DNS, DRM, DSM, DSO, DSP, DT, DX, Devi, Eden, Feb, GC, GMC, JC, Jew, MSC, Mel, NGC, NPC, OEM, PAC, PCC, PET, PFC, PVC, QC, Rex, Rey, TLC, TTC, UNC, Zen, beg, codec, dB, dear, decor, dim, din, dip, duct, dues, dyed, dyes, eds, gel, gem, sac, spec, wed, yen, AEG, APEC, Aden, BMC, CAC, CEA, CFC, CIC, CNC, CRC, CSC, CTC, DAT, DCI, DG, DLR, DMA, DMS, DMZ, DSL, DSS, DST, DTM, DTS, DUI, DUP, Decca, Dell, Deng, Doe, Dow, Dyer, ECG, EEA, ESC, Eco, FTC, GCC, GRC, Geo, HTC, IFC, IPC, ITC, Jen, KFC, LBC, LCC, Lea, Len, Lew, MBC, MDC, MHC, MeV, Meg, NAC, NEA, NRC, OPEC, OTC, Oder, PNC, PTC, Peck, RAC, RBC, REM, RPC, RSC, Rep, SBC, SCC, SLC, SRC, TAC, THC, TeX, UE, UPC, VOC, WAC, WC, WTC, decoy, deem, defy, dens, eel, fen, gen, hen, hex, med, mic, nee, ode, pea, peg, pep, rep, seq, tee, vet, wee, AEF, AGC, Beck, CEP, CVC, DBA, DCE, DCL, DCM, DDS, DKK, DLA, DLL, DMCA, DME, DMG, DMK, DNR, DOA, DPI, DQ, DRG, DRI, DSA, DSB, DSE, DTI, DVR, DWM, Desi, Diem, Dir, FAC, FDIC, FMC, FRC, GBC, GED, GPC, HCC, HFC, HMC, IAC, IDC, IEA, IED, IEP, IMC, JSC, JVC, Jed, KBC, KSC, LHC, LRC, LSC, MTC, MVC, MWC, NDC, NEP, OE, PMC, PUC, QED, RDC, RMC, RNC, SFC, SGC, SNC, TOC, TPC, TRC, TUC, UDC, beck, decal, deft, deli, dell, dent, doe, dud, eh, hem, keg, lac, odes, peck, pew, pic, rem, sew, ADAC, BNC, CJC, CWC, DCB, DCF, DDA, DDB, DDD, DDE, DLM, DLS, DMD, DMP, DMV, DND, DOB, DPD, DPT, DRA, DSD, DSR, DTA, DTP, DVT, DWI, DWT, Debs, ECD, EEOC, EIC, Eu, FDC, FNC, Fez, GEF, GFC, JCC, Keck, LDC, LFC, MNC, Mex, PEO, SDC, SVC, TBC, VEB, dace, decry, dept, deuce, doer, dz, exec, fem, gee, heck, reg, rel, secs, tel, zen, CXC, DCD, DLI, DPN, DPs, DRV, DVM, DVP, DVS, DWG, Dena, HIC, Nev, PGC, TEF, Wed, dBm, dab, docs, duh, dyer, hep, hew, idem, mew, soc, EEO, dewy, ides, msec, neg, ted, vac, vex, ceca, debs, decaf, ecu, educ, eek, recd, yep, ABC, AMC, CEO, DJ, DJs, DNA, ECW, ICC, Leo, NBC, Ned, USC, Vic, dbl, deice, dob, doz, dpt, née, Xes, dds, A9C, AAC, AAEC, AC, ACC, ADDEC, AE, AEA, AEB, AED, AEE, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEZ, AHC, AIC, AJC, AJEC, AKC, ALC, AMDEC, ANC, ANEC, AOC, AQC, ARC, ASC, AUC, AVC, AWC, AXC, AYC, Ac, BAC, BCC, BDC, BDE, BEA, BEAC, BEB, BECS, BED, BEE, BEF, BEH, BEI, BEK, BEM, BEO, BEP, BEQ, BER, BES, BET, BEU, BEV, BEW, BEX, BFC, BGC, BHC, BIC, BJC, BKC, BLC, BOC, BPC, BRC, BSC, BSc, BTC, BTEC, BUC, BVC, BWC, BXC, BYC, BZC, Be, Bic, C, C&C, C2C, CC, CDAC, CDE, CE, CEB, CED, CEE, CEF, CEG, CEI, CEJ, CEL, CEM, CEN, CEQ, CER, CES, CESC, CET, CEU, CEV, CGC, CHC, CLC, CMC, COC, CQC, CREC, CSEC, CUC, CZC, Ce, D, D&D, D10, D11, D12, D13, D14, D15, D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D2D, D30, D31, D32, D33, D34, D35, D36, D37, D38, D39, D40, D41, D42, D45, D46, D48, D50, D51, D52, D55, D56, D57, D58, D59, D60, D61, D62, D63, D64, D65, D66, D67, D68, D70, D71, D72, D73, D74, D76, D78, D79, D8, D80, D82, D83, D86, D89, D90, D91, D96, D97, D99, DAA, DAB, DACA, DACH, DAE, DAEU, DAF, DAI, DAJ, DAK, DAL, DAP, DAR, DAU, DAV, DAX, DB7, DB9, DBB, DBCS, DBD, DBF, DBL, DBO, DBP, DBQ, DBR, DBU, DBZ, DCA, DCK, DCN, DCO, DCP, DCR, DCS, DCT, DCU, DD, DDEA, DDH, DDHC, DDI, DDL, DDLC, DDM, DDO, DDV, DECed, DEEE, DEET, DELE, DELF, DESE, DEUG, DEXA, DFA, DFB, DFCO, DFE, DFF, DFG, DFI, DFL, DFM, DFN, DFO, DFP, DFS, DFT, DFV, DFW, DGA, DGAC, DGD, DGE, DGF, DGH, DGI, DGP, DGS, DGT, DH, DHA, DHCP, DHEA, DHH, DHI, DHL, DHM, DHP, DHR, DHS, DHT, DI, DID, DIF, DIL, DIN, DIP, DIR, DISEC, DIV, DIY, DJF, DJG, DJI, DJO, DJT, DJU, DJed, DK, DKA, DKB, DKP, DKR, DKZ, DLEM, DLF, DLG, DLH, DLP, DLT, DMF, DMFC, DMI, DMM, DMO, DMPC, DMR, DMX, DMed, DMs, DN, DNB, DNF, DNI, DNK, DNL, DNP, DNT, DO, DOCX, DOD, DOE, DOF, DOH, DOHC, DOI, DOJ, DOL, DOM, DON, DOP, DOS, DOT, DP, DPA, DPB, DPE, DPH, DPIC, DPO, DPS, DPU, DPW, DR, DR1, DRAC, DRH, DRP, DRS, DRT, DS, DSF, DSG, DSI, DSK, DSN, DSQ, DSU, DSV, DTT, DTU, DTV, DTW, DUD, DUS, DVA, DVB, DVI, DWH, DWV, DXB, DXF, DXM, DXO, DZA, DZD, DZI, DZO, Day, Demi, Dems, Deon, Depp, Di, Dick, Dis, Dix, DnD, DoD, DoJ, DoS, Don, Dot, Du, Dy, E, EAC, EBC, EC1, EC4, ECA, ECB, ECC, ECE, ECL, ECM, ECN, ECO, ECP, ECR, ECS, ECT, EDC, EDEHC, EE, EED, EEE, EEG, EEGC, EEK, EEM, EEP, EER, EFC, EG, EGC, EI, EK, EM, EMC, EN, ENC, EO, EOC, EP, ER, ERC, ES, ET, EUC, EV, EW, EX, EY, EZ, Ed, El, Er, Es, Esc, FC, FD&C, FDES, FEB, FECI, FECQ, FED, FEF, FEI, FEM, FEN, FEP, FER, FERC, FES, FET, FGC, FHC, FIC, FOC, FSC, Fe, Fed, GAC, GAEC, GDC, GDE, GE, GEA, GEH, GEI, GEM, GEQ, GES, GET, GEV, GGC, GHC, GIEC, GNC, GPEC, GREC, GSC, GUC, Ge, Gen, Ger, HAC, HC, HDE, HDFC, HDLC, HEB, HEF, HEL, HEO, HER, HES, HEV, HLC, HOC, HPC, HRC, HSC, He, Heb, IBC, IC, IDE, IDES, IDEs, IDed, IE, IECA, IEF, IEG, IEM, IES, IGC, IIC, ILC, INC, IRC, IREC, ISC, IWC, IXC, Ice, Inc, JAC, JDBC, JDE, JE, JED, JEF, JEV, JFC, JIC, JOC, JRC, JTC, Jeb, Jem, KC, KCC, KE, KEA, KED, KEF, KEM, KEN, KER, KES, KET, KLC, KWC, KYC, Ken, Key, LC, LDE, LE, LEA, LEB, LEDC, LEF, LEJ, LEM, LEP, LER, LES, LEV, LGC, LIC, LLC, LMC, LOC, LPC, LTC, Le, Les, LoC, Luc, Léa, Léo, MC, MDE, ME, MEA, MEB, MED, MEDC, MEF, MEG, MEL, MEN, MEP, MER, MES, MET, MFC, MJC, MLC, MMC, MOC, MPC, MRC, MSc, MUC, Me, NC, NCC, NDRC, NE, NED, NEE, NEH, NEM, NEN, NER, NHC, NIC, NMC, NSC, NTC, Ne, Neb, Neo, OBC, OC, OCC, ODBC, ODC, ODEM, OEA, OEB, OECD, OED, OEP, OIC, OJC, OMC, OSC, PBC, PCEC, PDC, PE, PEA, PEB, PED, PEE, PEF, PEGC, PEI, PEK, PEL, PEM, PEN, PEOC, PEP, PER, PES, PESC, PEV, PHC, PIC, PJC, PLC, PNEC, POC, PPC, PQC, PSC, Peg, Pei, Pen, Pfc, PoC, PwC, QE2, QEV, QFC, QPC, QRC, RC, RCC, RE, REA, RED, REG, REI, REL, REP, RER, RES, RET, REV, REX, RFC, RHC, RIC, RLC, RRC, RTC, RUC, Re, SAC, SADEC, SC, SDE, SDEI, SDLC, SDPC, SE, SEA, SEAC, SEB, SEBC, SEF, SEG, SEJ, SEK, SEL, SEM, SEO, SEP, SER, SES, SET, SEU, SEV, SEX, SEY, SEZ, SIC, SMC, SOC, SPC, STC, SYC, Sc, Se, Sen, Sep, Set, SoC, Soc, T&C, TC, TCC, TCEC, TDC, TDE, TEB, TECS, TED, TEE, TEEC, TEI, TEM, TEP, TEQ, TER, TES, TEU, TEV, TFC, TIC, TJC, TMC, TNC, TQC, TSC, TWC, TYC, TZC, Tc, Te, Tet, Tex, ToC, UAC, UBC, UC, UCC, UED, UEM, UER, UES, UET, UFC, UGC, UIC, ULC, UMC, UQC, UUC, UVC, UWC, VAC, VC, VCC, VDC, VE, VEI, VES, VHC, VLC, VMC, VNC, VPC, VSC, VTC, W3C, WAEC, WBC, WCC, WDC, WECA, WEG, WET, WFC, WGC, WIC, WPC, WRC, WSC, WWC, Wac, XEU, XIC, XTC, Xe, YAC, YBC, YC, YEM, ZAC, ZC, ZED, ZEE, ZEF, ZEP, ac, bc, bey, c, cc, d, dag, db, dd, dded, deps, derv, devs, dick, dict, dis, div, dm, dmed, dms, don, dos, dox, dpi, drey, dun, e, eV, ea, eco, ed, em, en, enc, er, fer, fey, fez, geo, hes, inc, kc, ken, lea, lech, lee, lei, mac, meg, meh, mes, né, orc, pc, pecs, pee, plc, re, rect, req, res, rev, secy, sen, sex, src, tic, ve, veg, ye, yea, yer, yew, zed, °C, écu, DAW, DTD, EQC, KDE, LXC, PECL, QVC, a/c +------------------------ +25-strings/10-quotes/en/EXERCISE.md:8:43:9 +... beginning and the end of the phrase:"Khal Drogo's f... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/10-quotes/en/EXERCISE.md:8:43:20 +...and the end of the phrase:"Khal Drogo's favorite word is "athja... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:1 +...se:+Unpaired symbol: ‘"’ seems to be missing +------------------------ +25-strings/20-string-concatenation/en/EXERCISE.md:6:35:5 +Print the following code ``` ``` using concatenation. +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +Using +------------------------ +10-basics/50-syntax-errors/en/README.md:8:43:11 +...vaScript, these errors are labelled as "SyntaxError". For technical reasons, this code runn... +Possible spelling mistake found. +Предлагаемые варианты: +Syntax Error +------------------------ +25-strings/15-escape-characters/en/README.md:35:43:9 +...ey have no graphical representation):"Khal Drogo's favorite word is "athjahaka... +Unpaired symbol: ‘"’ seems to be missing +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:4 +...e:+Possible spelling mistake found. +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:1 +...al Drogo's favorite word is "athjahakar"""Khal Drogo's favorite word is "athjahakar"" ... +Possible spelling mistake found. +Предлагаемые варианты: +Khan, Kcal, Hal, KAL +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:5 +...pre class='hexlet-basics-output'> "Khal Drogo's favorite word is "athjahakar""... +Possible spelling mistake found. +Предлагаемые варианты: +Dog, Drop, Drug, Dogs, Drove, Drugs, Logo, Diego, Drag, Dragon, Drops, Frog, Frogs, Promo, Proto, Drone, Drown, Togo, Dojo, Drags, Forgo, Argo, DRG, Draco, Provo, Dingo, Dodo, Doge, Drogue, Droid, Pogo, Droll, Droop, Ergo, Grog, LOGO, Dregs, Drool, Dross, Drano, BOGO, Drôme, Frodo, RGO, Dago, Doggo +------------------------ +25-strings/10-quotes/en/EXERCISE.md:9:43:10 +...utput'> "Khal Drogo's favorite word is "athjahakar""- Hi!¶ - Oh, he... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:35:43:20 +...graphical representation):- Hi!¶ - Oh, hey!¶ - What's up?Why are there two empty ... +Possible spelling mistake found. +Предлагаемые варианты: +Bunsen, Dun sen +------------------------ +25-strings/15-escape-characters/en/README.md:69:43:6 +...y are there two empty lines before the *Dunsen* line instead of one? The point is that... +Possible spelling mistake found. +Предлагаемые варианты: +Bunsen, Dun sen +------------------------ +25-strings/15-escape-characters/en/README.md:78:43:9 +...javascript ``` The result:
Du... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:64:43:20 +...ll print it like this:Wh... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/15-escape-characters/en/README.md:66:43:6 +...ss='hexlet-basics-output'>
Dunsen
DunsenPolliver ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:78:43:20 +... ``` The result:Polliver Gregor CleganeNow you understand enoug... +Possible spelling mistake found. +Предлагаемые варианты: +Bunsen, Dun sen +------------------------ +25-strings/15-escape-characters/en/README.md:95:43:9 +...other ```javascript ``` The result:
... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +25-strings/15-escape-characters/en/README.md:79:43:8 +...Polliver Gregor CleganeNow you ... +Possible spelling mistake found. +Предлагаемые варианты: +Cheswick +------------------------ +25-strings/15-escape-characters/en/README.md:83:43:6 +...regor Clegane
Chiswyck
... +Possible spelling mistake found. +Предлагаемые варианты: +Pol liver +------------------------ +25-strings/15-escape-characters/en/README.md:80:43:7 +...basics-output'> Polliver Gregor Clegane
Chiswyck
Dunsen Chiswyck
Dunsen
Chiswyck
DunsenJoffrey loves u... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +25-strings/15-escape-characters/en/README.md:95:43:20 +...avascript ``` The result:Call `` for each name. +Possible spelling mistake found. +Предлагаемые варианты: +Rely, Reply, Zenly +------------------------ +10-basics/10-hello-world/en/README.md:3:43:9 +...rogram will print the following text:Joffrey loves using \nA smal... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/40-instructions/en/README.md:10:43:9 +...s on the screen, one after the other.Mother of Drago... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/40-instructions/en/README.md:10:43:20 +...reen, one after the other.Theoretically, it's possible t... +Possible spelling mistake found. +Предлагаемые варианты: +Dramas, Decays, Racers, Radars, Discards, Drawers, Granary, Drapery, Dreary, Placards, Tracery, Tramcars, Drachmas, Fracas, Tracers, Drapers, Drays, Bracers, Daycares, Braceros, Dogcarts, Dracaena, Fracases, Dracaenas, Trocars +------------------------ +10-basics/40-instructions/en/README.md:20:43:3 +...on the same string: ```javascript ``` but it's considered bad practice as it's di... +This sentence does not start with an uppercase letter. +Предлагаемые варианты: +But +------------------------ +10-basics/40-instructions/en/EXERCISE.md:1:43:7 +... names, one after the other: "Robert", "Stannis", "Renly". As a result, the editor shou... +Possible spelling mistake found. +Предлагаемые варианты: +Stands, Tennis, Stanzas, Stains, Stances, Stasis, Tannins, Standish, Sunnis, Tannin, Giannis, Ioannis, Joannis, Stanine, Stanines, Statins +------------------------ +10-basics/40-instructions/en/EXERCISE.md:1:43:5 +... after the other: "Robert", "Stannis", "Renly". As a result, the editor should print:... +Possible spelling mistake found. +Предлагаемые варианты: +Rely, Reply, Zenly +------------------------ +10-basics/40-instructions/en/EXERCISE.md:3:43:9 +...As a result, the editor should print:Mother of Dragons. Dracarys!... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/40-instructions/en/README.md:12:43:8 +...xlet-basics-output'> Mother of Dragons. Dracarys!Robert Stannis ... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/40-instructions/en/EXERCISE.md:3:43:20 +..., the editor should print:Call `` for each name. +Possible spelling mistake found. +Предлагаемые варианты: +Stands, Tennis, Stanzas, Stains, Stances, Stasis, Tannins, Standish, Sunnis, Tannin, Giannis, Ioannis, Joannis, Stanine, Stanines, Statins +------------------------ +10-basics/40-instructions/en/EXERCISE.md:6:43:5 +...='hexlet-basics-output'> Robert Stannis RenlyRobert Stannis RenlyCall `` ... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/40-instructions/en/EXERCISE.md:5:43:7 +...re class='hexlet-basics-output'> Robert Stannis RenlyHello, World!... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/10-hello-world/en/README.md:3:43:20 +... print the following text:Hello, World!To print some... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/45-testing/en/README.md:15:43:9 +... will give you the following message:● test exp... +This word is normally spelled with a hyphen. +Предлагаемые варианты: +pre-class +------------------------ +10-basics/45-testing/en/README.md:15:43:20 +...you the following message:In addition to our tes... +Possible spelling mistake found. +Предлагаемые варианты: +hello, cello, Ella, Elle, Elmo, ell, ells, jello, ELO● test expect(received).toBe(exp... +Possible spelling mistake found. +Предлагаемые варианты: +hex let-basics-output +------------------------ +10-basics/45-testing/en/README.md:18:43:2 +...class='hexlet-basics-output'> ● test expect(received).toBe(expected) // Objec... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +10-basics/45-testing/en/README.md:18:43:1 +...exlet-basics-output'> ● test expect(received).toBe(expected) // Object.is eq... +It appears that a white space is missing. +Предлагаемые варианты: + ( +------------------------ +10-basics/45-testing/en/README.md:20:43:2 +...).toBe(expected) // Object.is equality Expected value to be: "Hello, World!... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +10-basics/45-testing/en/README.md:22:43:2 +...pected value to be: "Hello, World!" Received: "ello, World!"In ... +Possible typo: you repeated a whitespace +Предлагаемые варианты: + +------------------------ +10-basics/45-testing/en/README.md:23:43:4 +...e: "Hello, World!" Received: "ello, World!"