JavsScript #1 ~ A Taste of JavaScript
What exactly is JavaScript?
According to the official definition, JavaScript is a high-level, object-oriented, multi-paradigm, programming language. What does any of this mean though? Breaking this complex-looking defintion into parts will make things easier:
High-Level : Don't have to worry about complex process such as memory management.
Object-Oriented : Based on objects, for storing most kinds of data.
Multi-Paradigm : Can be used with different styles of programming.
Programming-Language : Instructing computers to process certain results.
The Role of JavaScript in Web Development
The three core technologies which make up web development are HTML, CSS, and JavaScript. They work together in order to create interactive and dynamic websidte or web applications we see normally through the internet.
HTML is responsible for making the overall physical content of the page such as texts, buttons, menu, etc. CSS, on the other hand, is responsible for the detailed presentation of the content through styling and layouts. Lastly, JavaScript is the actual controller that creates dynamic and interactive experiences on the web for actual users.
Coding Examples
JavaScript (also other programming languages) follows a very logical flow to produce results. As such, it is important to develop good logical thinking and problem solving skills in order to become an outstanding developer / programmer.
Here are some code examples that are typically seen in JavaScript:
let myName = Drew; console.log(myName) // Drew
1+2+3+4+5 // 15 'I' + 'like' + 'to' + 'code!' // I like to code!
let js = 'amazing'; if (if js === 'amazing') { console.log(js) // amazing }
Author And Source
이 문제에 관하여(JavsScript #1 ~ A Taste of JavaScript), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hjbaek91/2021.05.18T-TIL-A-Taste-of-JavaScript저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)