Critique, Problem Solving Process

Critique – A method to analyze something Describe Analyze Interpret Judge Critique Checklist Problem Solving Process The Four P’s Prep […]

Read More

Emphasis, Unity

Read More

Contrast, Balance

Read More

Space

Read More

Composition

Read More

Color

Read More

Format, Lines, Size

Read More

Nested Data & Flattening Arrays

Example This time, the initial value of reduce’s accumulator is an empty array []. Spread operator … allows an iterable such as an […]

Read More

Chaining Array Methods

Filter & Map Map method returns an array, and the same is true for the filter method. This is commonly […]

Read More

reduce()

A method that reduces an array of values into a single returned value after processing it. Unlike filter and map, […]

Read More

map()

What Is It? Use the map() method to transform elements in an array.Like filter(), map returns a new array leaving the original array […]

Read More

filter()

You can use Filter to remove items from an array, and place them in another array.Filter, doesn’t affect the original […]

Read More

forEach()

Arrays are sometimes referred to as List-like objects. forEach vs. for Loops forEach is an array method, just like push() or pop(), that […]

Read More

Using Closures

When to Use Closures? A closure is useful in hiding implementation detail in JavaScript. In other words, it can be […]

Read More

What Makes a Closure Different

When Does It Become a Closure? As per the closure definition, if inner function accesses the variables of outer function, […]

Read More

What is a Closure?

This is one of the important features in JavaScript.Closure means that an inner function always has access to the vars […]

Read More

Pseudocode to JavaScript

Write pseudo code in the text editor as comments to describe your program’s logic, and then write your actual code […]

Read More

How to Use Pseudocode

Some basic conventions for describing a program with input, variables, etc. Input You want to indicate that data is coming […]

Read More

What Is Pseudocode

Logic vs Syntax Logicis the order in which the program runs, the decisions made within the program, and how you […]

Read More

Responsive Images

There’s an advantage of using HTML to deliver responsive images rather than a JavaScript library, because JavaScript tends to be […]

Read More