Files

34 lines
839 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Catch Misspelled Variable and Function Names
---
# Catch Misspelled Variable and Function Names
2018-10-12 15:37:13 -04:00
---
## Hints
### Hint 1
Check the spelling of the first two variables against when it is used. Also, reading a text backwards can help with detecting spelling errors. Make sure to check for these common spelling mistakes in English:
* vowel confusion (a instead of e, i instead of a)
* i before e
* ous vs os
* double letters if certain one-syllable words adding a suffix (like "big" to "bigger")
2018-10-12 15:37:13 -04:00
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
2018-10-12 15:37:13 -04:00
```javascript
// 'i' and 'e' swapped in "receivables" and missing 's' in "payables"
let receivables = 10;
let payables = 8;
let netWorkingCapital = receivables - payables;
console.log(`Net working capital is: ${netWorkingCapital}`);
```
</details>