Created
September 13, 2021 15:13
-
-
Save anisur3036/0a7f54bf96d08ccec813a9565306c696 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// alert('We are ready for js tutorials.') | |
// console.log(jsFirstClass) | |
// var jsFirstClass = {a: 1, b: 2} | |
// console.log(jsFirstClass); | |
// // let age = 25; | |
// var jsFirstClass = 'abc' | |
// console.log(jsFirstClass); | |
// // let age = 55; | |
// // console.log(age); | |
// const age = 57; | |
// console.log(age); | |
// function fullname() { | |
// let age = 33; | |
// console.log(age) | |
// } | |
// fullname(); | |
// for(let i = 0; i< 10; i++) { | |
// console.log(i); | |
// } | |
// console.log(i) | |
// const age = 15; | |
// console.log(age); | |
// age = 30; | |
// console.log(age); | |
// const abc = 'Anisur'; | |
// const def = 'Rahman'; | |
// const concateWithPlus = abc + ' ' + def + ' Anis'; | |
// console.log(concateWithPlus); | |
// const concate = `${abc} ${def}`; | |
// console.log(concate); | |
// const addition = Number('2') + 2; | |
// console.log(addition); | |
// console.log('anisur'.toLocaleLowerCase()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment