Hướng dẫn javascript control flow exercises
Javascript Online CompilerWrite, Run & Share Javascript code online using OneCompiler's JS online compiler for free. It's one of the robust, feature-rich online compilers for Javascript language. Getting started with the OneCompiler's Javascript editor is easy and fast. The editor shows sample boilerplate code when you choose language as Javascript and start coding. Show About JavascriptJavascript(JS) is a object-oriented programming language which adhere to ECMA Script Standards. Javascript is required to design the behaviour of the web pages. Key Features
Syntax helpvariable declaration
Backtick StringsInterpolation
Multi line Strings
ArraysAn array is a collection of items or values. Syntax:
Example:
Arrow functionsArrow Functions helps developers to write code in concise way, it’s introduced in ES6. Syntax:
Example:
De-structuringArrays
Objects
rest(...) operator
Spread(...) operator
Functions
Loops1. If:IF is used to execute a block of code based on a condition. Syntax
2. If-Else:Else part is used to execute the block of code when the condition fails. Syntax
3. Switch:Switch is used to replace nested If-Else statements. Syntax
4. ForFor loop is used to iterate a set of statements based on a condition.
5. WhileWhile is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
6. Do-WhileDo-while is also used to iterate a set of statements based on a condition. It is mostly used when you need to execute the statements atleast once.
ClassesES6 introduced classes along with OOPS concepts in JS. Class is similar to a function which you can think like kind of template which will get called when ever you initialize class. Syntax:
Example: |