Daily Weekly Monthly

Daily Shaarli

All links of one day in a single page.

10/21/16

Note: Javascript Aprende Programando
<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
<script type="text/javascript">
    "use strict";

    var acme = {
        emlpeado : {
            ojos: "verdes",
            pelo: "negro",
        },
        colorPelo: function() {
            console.log(this.emlpeado.pelo);
        },
        colorOjos: function() {
            console.log(this.emlpeado.ojos);
        },
        init: function() {
            this.colorOjos();
            this.colorPelo();
        }
    }

    // acme.emlpeado.ojos = 'negros';
    acme.init();

</script>
</body>
</html>