We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23b5766 commit 6a786dfCopy full SHA for 6a786df
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