[TIL] more about JS

Soo·2022년 11월 7일
1

JavaScript is a programming language that allows you to implement complex things on web pages.

3 JavaScript Terms Beginners Need to Know

When you first start learning coding, you will probably feel overwhelmed with all the new words and terminology to remember. I am also struggling with this and it was hard to make sure all of them today. You’re likely wondering what the most important terms to know are when you start learning JavaScript? Here are some terms that you should know before you start coding.

1. var
This is the most common way to create a variable in JavaScript, but it was replaced with let because, there is the danger of declaring a variable over and over and the scope to which the variable belongs is ambiguous.

var name = "soogineer"; or let name = "soogineer";

2. const
fixed and invariable; unchanging

const name = value

3. Object
An object is the basic data structure in JavaScript. Objects have properties, also known as keys, to which are assigned values. The value can be a number, a string, an array, a function, or even another object.

What I learned today :

  • Downloaded and installed Node.js (https://nodejs.org/en/download/)
  • You do not have to spend a lot of your time, when you write a dev dairy. For instance, you could study coding for 50min and write something what you learned for 10min during break time and take a look through the pieces of TIL before you go to bed.

Reviews:

My Coding Bootcamp has just started today. I knew this would not easy learning to code for the first time, but it was much much harder than I expected. I also realized that writing a develop dairy is one of the most important things while I am learning coding. I am extremely excited to explore and look forward to this coding journey!

오늘 항해 99 온보딩 주가 시작되었다. 생각했던것보다 시간의 여유가 없어서 피곤하긴 하지만 체력관리를 잘 해야겠다는 생각이 들었다. 아무래도 짧다면 짧지만 길다면 긴 여정이 될거니까! 그래도 앞으로의 다가올 날들에 대해서는 매우 기대된다!

profile
Soogineer's Devlog

0개의 댓글