Мои извинения, видимо я не корректно поставил вопрос.
jsonss = {"bb":
{"vn":"i", "vn1": "r"},
"h":[
{"h1":"11", "h2":"12","h3":"13"},
{"h11":"22", "h22":"232","h33":"343"},
{"h31":"252", "h32":"2532","h43":"343"},
],
"rr": {"r1":"tes", "r2":"tes2"},
"mo": null,
"leng":"2000"
}
console.log('Вывод Джейсон ');
console.log(!!jsonss.bb); // true
console.log(!!jsonss.h); // true Именно здесь нужно определить array!
console.log(!!jsonss.rr.r1); // true
console.log(!!jsonss.rr); // true