Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var Producto = (function () {
- var codigo = 1001;
- var nombre = 'John Ortiz Ordoñez';
- var precio = 50000;
- var cantidad = 100;
- var getCodigo = function(){
- return codigo;
- };
- var getNombre = function(){
- return nombre;
- };
- var getPrecio = function(){
- return precio;
- };
- var getCantidad = function(){
- return cantidad;
- };
- return {
- getCodigo: getCodigo,
- getNombre: getNombre,
- getPrecio: getPrecio,
- getCantidad: getCantidad
- };
- })();
- console.log(Producto.getNombre());
- console.log(Producto.getCodigo());
- console.log(Producto.getPrecio());
- console.log(Producto.getCantidad());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement