Tag page

beginner-tips

Page 2 of 4

Tag archive

Posts

Page 2 of 4

    • 14 Mar 2019
    • 2 min read
    Constantly letting down my variables

    As it turns out I’ve been doing everything wrong. Well, maybe not everything, but at the very least I’ve been declaring variables incorrectly.…

    • 12 Mar 2019
    • 2 min read
    How to write modern JS

    So you're learning JavaScript (JS), cool. Putting all this effort in, you'll want to be learning the modern usage of the language right? Time to…

    • 9 Mar 2019
    • 1 min read
    Pastebot

    The more time I spend coding the more time I find myself researching solutions to workflow problems I've never had before. Copy and paste is a…

    • 7 Mar 2019
    • 2 min read
    on() click()

    Today I learned the difference between the on("click") and click() methods in jQuery. click() only adds listeners for existing elements, so it…

    • 3 Mar 2019
    • 1 min read
    Pigs in namespaaaace

    When you're working on a JavaScript (JS) app you'll create loads of functions and variables. By default in JS, there is no namespacing so…

    • 2 Mar 2019
    • 1 min read
    Atom snippets

    One of the things I love about modern text editors is code snippets. Coding tends to involve repetition, code snippets can really help cut down…

    • 28 Feb 2019
    • 1 min read
    Selection

    One thing I notice about jQuery is how it simplifies common tasks. A good example is something you do all the time with JavaScript, select DOM…

    • 25 Feb 2019
    • 1 min read
    Emmet!

    Whatever your text editor of choice (I just can't quit you Atom) there is a wide range of plugins to enhance its capabilities. One such plugin…

    • 22 Feb 2019
    • 2 min read
    jQuery

    What is jQuery? jQuery is a JavaScript library designed to simplify front end web development. It is the most widely deployed JavaScript library…

    • 10 Feb 2019
    • 1 min read
    We’ve all got issues

    Since I’ve been learning JavaScript I’ve been making an effort to do things as if I was working with others. The idea being that any project of…