Answers for "json first array print in javascript"

0

JsonArray get first Object

private static int FIRST_ELEMENT = 0;

public static void main(String[] args) {
    JSONArray json = new JSONArray("[{\"Hello1\":\"1\"},{\"Hello2\":\"2\"}]");

    if (json.length() > 0) {
        System.out.println("First: " + json.getJSONObject(FIRST_ELEMENT).toString());// parse the date instead of toString()
    }
}
Posted by: Guest on January-11-2021
0

get first element in json array javascript

const json = "[1, 2, 3]";
const firstElement = JSON.parse(json)[0];
Posted by: Guest on April-15-2022

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language