We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b974d1 + b39c43b commit 3564ab8Copy full SHA for 3564ab8
1-js/05-data-types/03-string/4-extract-currency/solution.md
@@ -1 +1,5 @@
1
-
+```js run
2
+function extractCurrencyValue(str) {
3
+ return +str.slice(1);
4
+}
5
+```
0 commit comments