• The Saga Continues…

    After a long break, the coding journey continues. Wu-Tang, Wu-Tang… I hope to post regularly on the things I’m learning, wondering, a projects being worked on.

  • Look what I learned today…

    for( let i = 0; i < 100; i++) {
    const btn = document.createElement("button");
    btn.innerText = "Hola!";  document.getElementById("container").appendChild(btn);   
    }
    

    Make a button and repeat it 100 times. What’s the point of this? That was the exercise and I wrote the code. Learning to manipulate the DOM sounds cool, but the exercises don’t make you see how it’ll be relevant. Hopefully, soon enough though.

  • Hello World!

    Welcome to WordPress! This is your first post. Edit or delete it to take the first step in your blogging journey.

  • Reduce, reuse, and .this

    Just learned about a couple of quirky is parts of Javascript. Will I ever use this? The reduce method is use to go through an array.

    .this can be quirky depending on the scope. In ES6 we have the arrow function to make it less finicky.

    Read up on it’s quirks here.