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.
1 parent 5919431 commit b39c43bCopy full SHA for b39c43b
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