Learn, grow and help others with BBBootstrap
Contribute us with some awesome cool snippets using HTML,CSS,JAVASCRIPT and BOOTSTRAP
Javascript is one of the popular programming language among developers. It is a lightweight, object-oriented, and cross-platform scripting language. Javascript is widely used in many web frameworks like ReactJS, NodeJS, Angular, etc. Today more than 80% of websites use javascript as clientside. Javascript is mainly designed for DOM manipulation in browsers.
Javascript Features:-
function myfunc() { console.log(name); console.log(age); var name = 'BBBootstrap'; let age = 21; } myfunc();
for (var i = 0; i < 3; i++) { setTimeout(() => console.log(i), 1); }
const bird = { size: 'small', }; const mouse = { name: 'Mickey', small: true, };
var x; console.log(x); x = 25;
function output() { x = 33; console.log(x); var x; } output();
var x = 2; var y = "2"; console.log(x==y);
var x = 2; var y = "2"; console.log(x===y);
var x = 5; var y = "5"; console.log(x + y);