freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/rosetta-code/count-the-coins.arabic.md

55 lines
690 B
Markdown
Raw Normal View History

---
title: Count the coins
id: 59713bd26bdeb8a594fb9413
challengeType: 5
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert(typeof countCoins === "function", "<code>countCoins</code> is a function.");'
- text: ''
testString: 'assert.equal(countCoins(), 242, "<code>countCoints()</code> should return 242.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function countCoins () {
// Good luck!
return true;
}
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>