Sunghwa's Blog

자바스크립트 10가지 프로팁!

2022-06-15

자바스크립트 10가지 프로팁!

프로처럼 자바스크립트 사용할 수 있는 10가지 팁

What you should already know

This guide assumes you have the following basic background:

A general understanding of the Internet and the World Wide Web (WWW). Good working knowledge of HyperText Markup Language (HTML). Some programming experience. If you are new to programming, try one of the tutorials linked on the main page about JavaScript. Where to find JavaScript information The JavaScript documentation on MDN includes the following:

  • Learn Web Development provides information for beginners and introduces basic concepts of programming and the Internet.
  • JavaScript Guide (this guide) provides an overview about the JavaScript language and its objects.
  • JavaScript Reference provides detailed reference material for JavaScript. If you are new to JavaScript, start with the articles in the learning area and the JavaScript Guide. Once you have a firm grasp of the fundamentals, you can use the JavaScript Reference to get more details on individual objects and statements.

What is JavaScript?

JavaScript is a cross-platform, object-oriented scripting language used to make webpages interactive (e.g., having complex animations, clickable buttons, popup menus, etc.). There are also more advanced server side versions of JavaScript such as Node.js, which allow you to add more functionality to a website than downloading files (such as realtime collaboration between multiple computers). Inside a host environment (for example, a web browser), JavaScript can be connected to the objects of its environment to provide programmatic control over them.

자바스크립트 기초 문법

자바스크립트 기초 문법

기본 문법부터 사용하는 실전까지 최종정리

Node 기초 정리

Node 기초 정리

기본 적인 Node 사용법에 대해 전부 정리!

Tech Blog by Sunghwa Cho | All Right Reserved.