Blog

  • JavaScript Date Format

    JavaScript Date Format

    Create Date Format In JavaScript

    In JavaScript, the date object is based on a timestamp of milliseconds elapsed since the epoch.

    The date output will use the time zone of the local device which is normally the web browser. The date time string is simplified from the ISO 8601 calendar date extended format. The format is YYYY-MM-DDTHH:mm:ss.sssZ.

    (more…)

  • JavaScript Date Object

    JavaScript Date Object

    Create Date Object In JavaScript

    In JavaScript, the date object is based on a timestamp of milliseconds elapsed since the epoch.

    The date output will use the time zone of the local device which is normally the web browser.

    (more…)

  • Chicken Hoop Coop

    Building A Chicken Hoop Coop

    Building a hoop coop for chickens is economical and easy. It can be constructed to withstand strong winds, rain, snow and the overbearing sun.

    Scrap material can be used to keep the construction costs low. For the build, I used tools and some material purchased for a different project. I initially purchased metal cloth, rebar and tarp, then purchased cloth canvas and plywood when the baby chicks moved in.

    (more…)

  • Learning JavaScript Course And Book

    Course And Book For Learning JavaScript

    JavaScript is an excellent programming language to learn. It can be used for web page manipulation, animations, event handling, and communication with servers and databases.

    Some of the biggest concerns with learning a new language are syntax, developer tools and support. You decide if you want to learn via an online course available at any day or time or a book in paperback or ebook format.

    (more…)

  • JavaScript BigInt Datatype

    Perform BigInt Datatype In JavaScript

    In JavaScript, assigning of a value will indicate the data type. Get the data type of any object using the built-in typeof function.

    The BigInt type is for storing large integers that can be beyond the safe integer limit. Unsigned right shift (>>>) can not be done on a BigInt.

    (more…)

  • JavaScript Object Destructuring

    Perform Object Destructuring In JavaScript

    Destructuring is extracting values from data types such as arrays, objects and strings.

    Arrays and objects destructuring can be assigned default values if the index is not defined. Nested destructuring is possible for data types with nested properties. The object data type is non-primitive, mutable and can store different elements of any data type as key value pairs.

    (more…)

  • JavaScript Array Destructuring

    Perform Array Destructuring In JavaScript

    Destructuring is extracting values from data types such as arrays, objects and strings.

    Arrays and objects destructuring can be assigned default values if the index is not defined. Nested destructuring is possible for data types with nested properties. The array data type is non-primitive, mutable by default and can store different elements of any data type.

    (more…)