Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 418 Bytes

objetos_funciones_y_ambitos.md

File metadata and controls

21 lines (17 loc) · 418 Bytes

Objetos y funciones

Iterar sobre objetos callbacks

ámbitos

// Objetos (objects)
// -----------------------------
var obj = {
    name: 'Raul',
    last_name: 'Jimenez Ortega',
    age: 31
};

// obj.name = 'Raul'
// obj.last_name = 'Jimenez Ortega'
// obj.age = 31

Los objetos nos permiten definir estructuras de datos con distintos tipos de valores, ya verás que esto te será muy útil en el futuro.