JSON & Object Literals

Array of Objects OR JSON – JavaScript Object Notation Because JavaScript objects provide a structured way to store data, JavaScript […]

Read More

Object Literal

Sometimes called an object for short. A JavaScript object literal is like a series of named variables, each with their […]

Read More

Arrays

Define Add & Remove 1. Assign – Assigning a value 2. Push – Adding to the end of the array 3. Unshift – […]

Read More

Loops

While Loop Loop condition is evaluated before loop start. Auto-guess a number between 1-10000 Do-While Loop Loop condition isn NOT […]

Read More

Functions

Call a Function Function Declarations Function Expressions Parameter – A variable in which the function stores information passed to it.Argument – A […]

Read More

Conditionals: Short Circuit Evaluation

It means stopping code execution as soon as possible depending on the value. Logical operators like && and || can be used to control […]

Read More

Conditionals: Switch & Ternary

Switch Statement switch, case, default, and break.This switch statement is used for multiple branching logic, where all cases are contained inside one block […]

Read More

Conditionals: Basics

Booleans true or falseThere are other data types that can yield true or false values on comparisonTrue: true, 1, ‘Hello’False: false, 0, ” Operators Double Equals vs. Triple […]

Read More

Numbers

Parsing Numbers inside strings Math Object

Read More

Strings

Escape characters \n \” \’ Length fullName is an objectlength is a property Letter Casing String.prototype.toLowerCase();toLowerCase() is a method Concatenation [make-shout.js]

Read More

Intro

Statements run in the DOM sequentially, one after the other.Every browser has something called a JavaScript interpreter built into it. […]

Read More

Presentation

When presenting your findings, create a narrative to win your management, fellow designers, and engineering and sales teams. Presnetation Checklist […]

Read More

Journey Maps

If an empathy map is a quick snapshot of your user, consider the as-is journey as the movie version.Time and […]

Read More

Empathy Maps

A snapshot of the user’s overall character. It’s divided into four sections:1. Says2. Does3. Thinks4. Feels Timebox of filling an […]

Read More

Design Thinking

Design+Thinking. The practice of considering a user’s experience throughout the process of creating and improving a product or service. IDEO […]

Read More

Templates

App Template Inside the courses folder create a templates folder. HTML Template Inside the templates folder create another courses folder, […]

Read More

Django’s Admin

Creating the First Admin Account createsuperuser Creates a superuser. You can now log in to the admin dashboard on loclhost:8000/admin, […]

Read More

First App View

Create App View [courses/views.py] from django.http import HttpResponse from django.shortcuts import render from .models import Course def course_list(request): courses = […]

Read More

Creating Instances via Shell

The following is a handy command that lets us explore the ORM and create new records QuerySet This looks like […]

Read More

Models

Model belong to an app. Model names should always be in singular by convention. Creating a New Model models.py from […]

Read More