61 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | ||
| id: 587d7b84367417b2b2512b35
 | ||
| title: Catch Misspelled Variable and Function Names
 | ||
| challengeType: 1
 | ||
| videoUrl: ''
 | ||
| localeTitle: Поймать имена с ошибкой и имена функций
 | ||
| ---
 | ||
| 
 | ||
| ## Description
 | ||
| <section id="description"> Методы <code>console.log()</code> и <code>typeof</code> являются двумя основными способами проверки промежуточных значений и типов вывода программы. Теперь пришло время войти в общие формы, которые берут ошибки. Одна проблема на синтаксическом уровне, с которой быстрые моделисты могут сочувствовать, - это скромная орфографическая ошибка. Транспонированные, отсутствует или неправильно заглавной буквы, символы в имени переменной или функции будут иметь браузер ищет объект, который не существует - и жалуюсь в виде справочной ошибки. Имена переменных и функций JavaScript чувствительны к регистру. </section>
 | ||
| 
 | ||
| ## Instructions
 | ||
| <section id="instructions"> Исправьте две ошибки орфографии в коде, так что расчет <code>netWorkingCapital</code> работает. </section>
 | ||
| 
 | ||
| ## Tests
 | ||
| <section id='tests'>
 | ||
| 
 | ||
| ```yml
 | ||
| tests:
 | ||
|   - text: 'Проверьте правильность написания двух переменных, используемых в расчете netWorkingCapital, вывод консоли должен показать, что «Чистый оборотный капитал: 2».'
 | ||
|     testString: 'assert(netWorkingCapital === 2, "Check the spelling of the two variables used in the netWorkingCapital calculation, the console output should show that "Net working capital is: 2".");'
 | ||
|   - text: В коде не должно быть экземпляров ошибочных переменных.
 | ||
|     testString: 'assert(!code.match(/recievables/g), "There should be no instances of mis-spelled variables in the code.");'
 | ||
|   - text: Переменная <code>receivables</code> должна быть объявлена и использована должным образом в коде.
 | ||
|     testString: 'assert(code.match(/receivables/g).length == 2, "The <code>receivables</code> variable should be declared and used properly in the code.");'
 | ||
|   - text: В коде не должно быть экземпляров ошибочных переменных.
 | ||
|     testString: 'assert(!code.match(/payable;/g), "There should be no instances of mis-spelled variables in the code.");'
 | ||
|   - text: Переменная <code>payables</code> должна быть объявлена и использована правильно в коде.
 | ||
|     testString: 'assert(code.match(/payables/g).length == 2, "The <code>payables</code> variable should be declared and used properly in the code.");'
 | ||
| 
 | ||
| ```
 | ||
| 
 | ||
| </section>
 | ||
| 
 | ||
| ## Challenge Seed
 | ||
| <section id='challengeSeed'>
 | ||
| 
 | ||
| <div id='js-seed'>
 | ||
| 
 | ||
| ```js
 | ||
| let receivables = 10;
 | ||
| let payables = 8;
 | ||
| let netWorkingCapital = recievables - payable;
 | ||
| console.log(`Net working capital is: ${netWorkingCapital}`);
 | ||
| 
 | ||
| ```
 | ||
| 
 | ||
| </div>
 | ||
| 
 | ||
| 
 | ||
| 
 | ||
| </section>
 | ||
| 
 | ||
| ## Solution
 | ||
| <section id='solution'>
 | ||
| 
 | ||
| ```js
 | ||
| // solution required
 | ||
| ```
 | ||
| </section>
 |