I have a JSON that brings me several objects as I could go through them and identify them in order to work with each of them separately or bring any of the elements that make it up. Sincerely, I have always complicated this of working with objects: (
function traer(){
var b = $.get("https://api.myjson.com/bins/1aujl6",
function (todo) {
var a = todo;
console.log(a);
}, "json");
}
traer();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>