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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!