I have JSON in Javascript like this:
var json = {
    "total": "100",
    "page":"1",
    "records":"100",
    "rows": [
        {
            "no": "1",
            "part_number": "2",
            "part_name": "3",
            "price": "4",
            "note": "8"
        }
    ]
};
and I want to add
"test1":"5",
"test2":"7"
into JSON above.
so it will be like this:
var json = {
    "total":"100",
    "page":"1",
    "records":"100",
    "rows": [
        {
            "no": "1",
            "part_number": "2",
            "part_name": "3",
            "price": "4",
            "test1": "5",
            "test2": "7",
            "note":"8"
        }
    ]
};
 
     
     
    