profile
Improving Everyday

JavaScript #19 ~ Loop

A loop is one of the most essential control method used in JavaScript. We use loops to specifically automate repetitive tasks that are performed again

2021년 7월 21일
·
0개의 댓글
·

JavaScript #18 ~ Object

An object is also a type of data structure used for storing various data. In arrays, we find our data by referencing a specific position number in whi

2021년 7월 16일
·
0개의 댓글
·

JavaScript #17 ~ Array

When we have a mass amount of data, we not only need to know how to use the data, but also where to store them. This is where data structures come int

2021년 7월 12일
·
1개의 댓글
·

JavaScript #16 ~ Function

Functions are the fundamental building blocks of real-world JavaScript applications. In more simpler mearning, functions are pieces of code that can b

2021년 7월 10일
·
0개의 댓글
·
post-thumbnail

JavaScript #15 ~ ES5? ES6? ESNext?

When we dive deeper into javascript and especially, web developing, we learn the various different versions of JavaScript such as ES5 and ES6 which we

2021년 6월 28일
·
0개의 댓글
·

JavaScript #14 ~ The Conditional (Ternary) Operator

Besides the if/else statement and the switch statement, there is also the conditonal (ternary) operator. this is known as 'ternary' because there is a

2021년 6월 26일
·
0개의 댓글
·

JavaScript #13 ~ The Switch Statement

The switch statement is simply an alternative method to the if/else statement. Although it is not used commonly today, the switch statement method det

2021년 6월 22일
·
0개의 댓글
·

JavaScript #12 ~ Boolean Logic & Logical Operators

Boolean logic is a branch of computer science that uses true or false values to solve complex logical problems. This concept is not only introduced in

2021년 6월 9일
·
0개의 댓글
·

JavaScript #11 ~ Equality Operators: == vs. ===

In previous posts, I talked about the importance and functions of logical operators (>, <). But, what if two values are equal to each other. Beside

2021년 6월 8일
·
0개의 댓글
·

JavaScript #10 ~ Type Conversion and Coercion

When we try to write code for a program, we often need to deal with changing the code from one type to another such as a 'string to a number' or a 'nu

2021년 6월 6일
·
0개의 댓글
·
post-thumbnail

JavaScript #9 ~ if / else Statements

In this post, I want to talk about the importance of using if/else statments. We need to remember that computers do things differently than that of hu

2021년 6월 5일
·
0개의 댓글
·

JavaScript #8 ~ Strings and Template Literals

When creating long strings in code, it is common usage to use the '+' operator to combine strings together. However, this method can become very tedio

2021년 5월 31일
·
0개의 댓글
·

JavaScript #7 ~ Operator Precedence

This will be another quick post on operator precedence within JavaScript code. This is a rather interesting concept to talk about as there seems to be

2021년 5월 22일
·
0개의 댓글
·
post-thumbnail

JavaScript #6 ~ Basic Operators

Today is a bit of recap on basic operators used in JavaScript. Once we have our values in our variables, what can we do with them? We can manipulate J

2021년 5월 21일
·
0개의 댓글
·
post-thumbnail

JavaScript #5 ~ Let, Const, and Var

When first studying JavaScript, it is

2021년 5월 19일
·
0개의 댓글
·

JavaScript #4 ~ Data Types

Variables can store various types of data in their container. Before going into it any further, it is important to first address the categories within

2021년 5월 19일
·
0개의 댓글
·

JavaScript #3 ~ Naming Variables

This is just a quick post about conventions used in naming variables. Except for a few minor cases, there is actually no limit to naming variables in

2021년 5월 19일
·
0개의 댓글
·

JavaScript #2 ~ Values & Variables

Values are pieces of data that are stored and used for certain programming purposes. In programming terms, a value is the smallest unit of information

2021년 5월 18일
·
0개의 댓글
·
post-thumbnail

JavsScript #1 ~ A Taste of JavaScript

According to the official definition, JavaScript is a high-level, object-oriented, multi-paradigm, programming language. What does any of this mean th

2021년 5월 18일
·
0개의 댓글
·
post-thumbnail

Here we go again!

JavaScript was the very first programming language that I had started out when I first started my journey of becoming a developer as a non-major. Refl

2021년 5월 18일
·
1개의 댓글
·