I've got an JSON object like that:
var storeOriginalList = '[{"Store_Id" : "1932","Store_Name" : "1 Sale A Day12","KeywordURL" : "1-Sale-A-Day1234","Category" : "Stores"},{"Store_Id" : "1171","Store_Name" : "100 Day Loans","KeywordURL" : "100-Day-Loans","Category" : "Stores"}]'
I want to extract only Store_Id
, Store_Name
and also make an another new JSON object.
My question is, can I do it without looping. If yes, then please provide a sample code.