Untitled

 avatar
unknown
javascript
10 days ago
261 B
259
Indexable
/* Given a string which can contain any characters, write a function that will return the sum of all the numbers present in the string. */
const string = "145bc@459908m" ;
function numSum( string ) {
    // Write your solution here
}
console.log(numSum(string))
Editor is loading...
Leave a Comment