Question 1
What is the difference between the two car objects?
The difference between the 2 object, if I'm not mistaken, is that the first is an object with other objects as properties inside while the second (ignoring the invalid syntax for now) is an array with 2 elements, each element containing 2 properties.
Object 1
cars={
ford:{
ford_car_one:'Ford Car One',
ford_car_two:'Ford Car Two'
},
toyota:{
toyota_car_one:'Toyota Car One',
toyota_car_two:'Toyota Car Two'
}
};
This is an object named cars which has 2 properties, ford and toyota. Each property is another object with 2 properties each. This object looks like this in the console output in chrome:

Object 2
cars = [
{ name : 'ford', types: { name : 'ford car one', name : 'ford car 2'},
{ name : 'toyota', types: { name : 'toyota car one', name : 'toyota car 2'},
];
This instance has messed up syntax and should be (assuming it's current form was intended, though I would not recommend it!)
var cars = [
{
name: 'ford',
types: {
name: 'ford car one',
name: 'ford car 2'
}},
{
name: 'toyota',
types: {
name: 'toyota car one',
name: 'toyota car 2'
}}];
In this instance cars is an array with 2 elements. Each element being an anonymous object with the properties of name and types. types has 2 properties with the same name, which is name, this means the last specified name is overwriting the first name. Resulting in:

As you can see in the results above only ford car 2 and toyota car 2 are left in the inner name property.
DEMO - Showing the output of both current objects.
Question 2
Now how would I perform the $.each(cars[$..... block of code if my
javascript object looked like.. object 2 above.
first you have to fix the syntax errors and then most likely re-think how to populate the object, seeing the name property overwrites itself with the next one.
Assuming your object is valid now:
var cars = [
{
name: 'ford',
types: [
'ford car one',
'ford car 2'
]},
{
name: 'toyota',
types: [
'toyota car one',
'toyota car 2'
]}];
Resulting in:

You can now do:
$(cars).each(function(){
// only declared for clarity, not needed, using this is fine.
var car = this;
$result.append("- " + car.name + "<br />");
$(this.types).each(function(){
// only declared for clarity, not needed, using this is fine.
var type = this;
$result.append("-- " + type + "<br />");
});
$result.append("<br />");
});
DEMO - Iterating through cars and types using .each() on the suggested object
A side-note on performance. While .each() is fine, you will find that using nested standard for(i=0; i < cars.length; i++), etc. will execute faster. But .each() is perfectly fine and runs fast enough, the difference is minor.
{ name : 'ford', types: ['ford car one','ford car 2']}– ahren Aug 23 '12 at 20:57name : 'ford car 2'andname : 'toyota car 2'over-write the first name values as both properties of thetypes:object are namedname. Fix the object and use an array fortypesinstead and then you can iterate over them as expected, see my answer for full details. – François Wahl Aug 23 '12 at 21:43