Question: Javascript Given an array of strings. Some of the strings will contain valid numbers, others will not. Separate the strings into two arrays and POST
Javascript
Given an array of strings. Some of the strings will contain valid numbers, others will not. Separate the strings into two arrays and POST them in a JSON object under "numbers" and "non-numbers".
["1", "4", "2.3", "abc", "green"] -> { "numbers": [1, 4, 2.3], "non-numbers": ["abc", "green"] }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
