Solution use-the-parseint-function.english.md (#18743)

* Update use-the-parseint-function.english.md

* Removed blank line
This commit is contained in:
Prabhat Kumar Sahu
2018-10-16 05:08:37 +05:30
committed by Todd Chaffee
parent f5590c1d0b
commit 1f9e26c7fe

View File

@ -59,6 +59,8 @@ convertToInteger("56");
<section id='solution'>
```js
// solution required
function convertToInteger(str) {
return parseInt(str);
}
```
</section>