awsdocs /
aws-doc-sdk-examples
Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.
Loading repository data…
Mohit-Alive / repository
This repository contains comprehensive notes on JavaScript, including concepts, examples, and explanations designed to help learners understand and master JavaScript programming.
Prefer not to use var because of issue in block scope and functional scope
console.log(typeof undefined); // undefined
console.log(typeof null); // object
console.log(null > 0); // false
console.log(null == 0); // false
console.log(null >= 0); // true
console.log (undefined == 0); // false
console.log (undefined > 0); // false
console.log (undefined < 0); // false
const hundreds = 1000000
console.log(hundreds.toLocaleString()); // 1,000,000
console.log(hundreds.toLocaleString('en-IN')); // 10,00,000
console.log(Math); // Object [Math] {}
console.log(Math.abs(-4)); // 4
console.log(Math.round(4.6)); // 5
console.log(Math.ceil(4.2)); // 5
console.log(Math.floor(4.9)); // 4
console.log(Math.min(4, 3, 6, 8)); // 3
console.log(Math.max(4, 3, 6, 8)); // 8
console.log(Math.random()); // 0.9189116621592945
console.log((Math.random()*10) + 1); // 6.7671766771352571
console.log(Math.floor(Math.random()*10) + 1); // 9
const min = 10
const max = 20
console.log(Math.floor(Math.random() * (max - min + 1)) + min)
Date is of object Datatype
let myDate = new Date();
console.log(myDate.toString()); // Wed Jul 17 2024 12:14:02 GMT+0530 (India Standard Time)
console.log(myDate.toDateString()); // 7/17/2024, 12:14:02 PM
console.log(myDate.toLocaleString()); // 7/17/2024, 12:14:02 PM
console.log(typeof myDate); // object
const marvel_heros = ["thor", "Ironman", "spiderman"]
const dc_heros = ["superman", "flash", "batman"]
const all_new_heros = [...marvel_heros, ...dc_heros]
console.log(all_new_heros);
// [ 'thor', 'Ironman', 'spiderman', 'superman', 'flash', 'batman' ]
console.log(Array.from({name: "Mohit"})) // [] Empty Array
let score1 = 100
let score2 = 200
let score3 = 300
console.log(Array.of(score1, score2, score3));
// [ 100, 200, 300 ]
const mySym = Symbol("key1")
const JsUser = {
name: "Mohit",
full_name: "Mohit Kholiya",
[mySym]: "mykey1",
age: 20,
lastLoginDays: ["Monday", "Saturday"]
}
console.log(Object.keys(JsUser)); // [ 'name', 'full name', 'age', 'lastLoginDays' ]
console.log(Object.values(JsUser)); // [ 'Mohit', 'Mohit Kholiya', 20, [ 'Monday', 'Saturday' ] ]
console.log(Object.entries(JsUser)); // All entries [ [ 'name', 'Mohit' ], []..... ]
const obj1 = {1: "a", 2: "b"}
const obj2 = {3: "a", 4: "b"}
const obj3 = {...obj1, ...obj2}
console.log(obj3);
// { '1': 'a', '2': 'b', '3': 'a', '4': 'b' }
function addTwoNumbers(number1, number2){
return number1 + number2
}
console.log(addone(5)) // Don't show error
function addone(num){
return num + 1
}
addTwo(5) // Throw error
const addTwo = function(num){
return num + 2
}
const addTwo = (num1, num2) => {
return num1 + num2
}
const addTwo = (num1, num2) => num1 + num2
const addTwo = (num1, num2) => ( num1 + num2 )
Functions that execute immediately after they are defined.
(function chai(){
// named IIFE
console.log(`DB CONNECTED`);
})();
( (name) => {
console.log(`DB CONNECTED TO ${name}`);
} )('MongoDb')
We all know the syntax, so lets just skip it.
false, 0, -0, BigInt 0n, "", null, undefined, NaN
"0", 'false', " ", [], {}, function(){}
let val1;
val1 = 5 ?? 10 // 5
val1 = null ?? 10 // 10
val1 = undefined ?? 15 // 15
val1 = null ?? 10 ?? 20 // 10
console.log(val1);
// Terniary Operator
// condition ? true : false
let myArray = ["flash", "batman", "superman"]
for (let index = 0; index < myArray.length; index++) {
const element = myArray[index];
console.log(element);
}
let myArray2 = ['flash', "batman", "superman"]
let arr = 0
while (arr < myArray2.length) {
console.log(`Value is ${myArray2[arr]}`);
arr++;
}
const arr = [1, 2, 3, 4, 5]
for (const num of arr) {
console.log(num);
}
const greetings = "Hello world!"
for (const greet of greetings) {
console.log(`Each char is ${greet}`)
}
const map = new Map()
map.set('IN', "India")
map.set('USA', "United States of America")
for (const [key, value] of map) {
console.log(key, ':-', value);
}
const myObject = {
game1: 'NFS',
game2: 'Spiderman'
}
for (const [key, value] of myObject) {
console.log(key, ':-', value);
}
const programming = ["js", "rb", "py", "java", "cpp"]
for (const key in programming) {
console.log(programming[key]);
}
const coding = ["js", "ruby", "java", "python", "cpp"]
coding.forEach( (item) => {
console.log(item);
} )
// We can also get item, index , and whole arr
coding.forEach( (item, index, arr)=> {
console.log(item, index, arr);
} )
// Filter
const myNums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
const newNums = myNums.filter( (num) => {
return num > 4
} )
console.log(newNums);
//Reduse
const myNums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
const myTotal = myNums.reduce( (acc, curr) => acc+curr, 0);
console.log(myTotal);
The Document Object Model (DOM) is a programming interface for web documents. It represents the page so that programs can change the document structure, style, and content. The DOM represents the document as a tree of nodes, where each node corresponds to a part of the document (such as an element, attribute, or text).
// Example
const parent = document.querySelector('.parent')
console.log(parent);
console.log(parent.children);
console.log(parent.children[1].innerHTML);
parent.children[1].style.color = "orange";
const div = document.createElement('div')
div.className = "main"
div.style.backgroundColor = "cyan"
div.style.color = "black"
// div.innerText = "Hello , I am Mohit"
const addText = document.createTextNode("Hello , I am Mohit")
div.appendChild(addText)
document.body.appendChild(div)
// Add
function addLanguage(langName){
const li = document.createElement('li');
li.innerHTML = `${langName}`
document.querySelector('.language').appendChild(li)
}
addLanguage("python")
addLanguage("typescript")
// Edit
const secondLang = document.querySelector("li:nth-child(2)")
//secondLang.innerHTML = "Mojo"
const newli = document.createElement('li')
newli.textContent = "Mojo"
secondLang.replaceWith(newli)
// Edit
const firstLang = document.querySelector("li:first-child")
firstLang.outerHTML = '<li>TypeScript</li>'
// Remove
const lastLang = document.querySelector('li:last-child')
lastLang.remove()
document.getElementById('owl').onclick = function(){
alert("owl clicked")
}
document.getElementById('images').addEventListener('click', function(e){
console.log("clicked inside the ul");
}, false)
document.getElementById('owl').addEventListener('click', function(e){
console.log("owl clicked");
e.stopPropagation()
}, false)
document.getElementById('google').addEventListener('click',function(e){
e.preventDefault();
e.stopPropagation()
console.log("google clicked");
}, false)
const changeMe = setTimeout(changeText, 2000) // changeText is a function
document.querySelector('#stop').addEventListener('click', function(){
clearTimeout(changeMe)
console.log("STOPPED")
})
const intervalId = setInterval(sayDate, 1000, "hi")
clearInterval(intervalId)
The readyState property of the XMLHttpRequest object holds the status of the XMLHttpRequest. It can have one of five values:
const requestUrl = 'https://api.github.com/users/Mohit-Alive'
const xhr = new XMLHttpRequest();
xhr.open('GET', requestUrl)
xhr.onreadystatechange = function(){
console.log(xhr.readyState);
if (xhr.readyState === 4) {
const data = JSON.parse(this.responseText)
console.log(typeof data);
console.log(data.followers);
}
}
xhr.send();
// Promise Creation
const promiseFive = new Promise(function(resolve, reject){
setTimeout(function(){
let error = true
if (!error) {
resolve({username: "javascript", password: "123"})
} else {
reject('ERROR: JS went wrong')
}
}, 1000)
});
// Then catch and finally
promiseFour
.then((user) => {
console.log(user);
return user.username
}).then((username) => {
console.log(username);
}).catch(function(error){
console.log(error);
}).finally(() => console.log("The promise is either resolved or rejected"))
// OR
// Try and catch
async function consumePromiseFive(){
try {
const response = await promiseFive
console.log(response);
} catch (error) {
console.log(error);
}
}
async function getAllUsers(){
try {
const response = await fetch('https://api.github.com/users/Mohit-Alive')
const data = await response.json()
console.log(data);
} catch (error) {
console.log("E: ", error);
}
}
getAllUsers()
// OR
fetch('https://api.github.com/users/Mohit-Alive')
.then((response) => {
return response.json()
})
.then((data) => {
console.log(data);
})
.catch((error) => console.log(error))
Selected from shared topics, language and repository description—not editorial ratings.
awsdocs /
Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.
RitikPatni /
This repository contains content which will be helpful in your journey as a front-end Web Developer
Vishal-raj-1 /
This Repository contain awesome vanilla JavaScript projects.
sachin-source /
This repository contains a list of important and useful github repos which a developer, coder, a student should never miss to look at.
Bharat2044 /
100xDevs Cohort 3 🚀 by Harkirat Singh. This repository contains Lecture Codes, Notes, Assignments, Assignment Solution Code and Some Good Articles/Blogs Link. 🔥
smv1999 /
This repository contains all the popular Competitive Programming and DSA questions with solutions for your Coding Interview Preparation.