I have arrays such as
var arrayVal_Int = ["21", "53", "92", "79"];
var arrayVal_Alpha = ["John", "Christine", "Lucy"];
var arrayVal_AlphaNumeric = ["CT504", "AP308", "NK675"];
- Above
arrayVal_Intshould be considered as (purely) numeric. arrayVal_AlphaandarrayVal_AlphaNumericshould be considered as strings.
I need to check that in JavaScript.