Web Development CS JS Python JavaScript Hacking ReactJs Python django Flask CSS Frontend Backend Full Stack Java Node Pdf Books
Ir al canal en Telegram
One place for the latest in JavaScript, Python, Django, React, and more. Get top-notch tutorials, tips, and downloadable resources. Join us to elevate your tech skills!
Mostrar más4 217
Suscriptores
Sin datos24 horas
-77 días
-1630 días
Archivo de publicaciones
To check if a variable is an array in JavaScript, you can use the Array.isArray() method.
let myVariable = [1, 2, 3];
let isItArray = Array.isArray(myVariable);
console.log(isItArray);
// Output: true
The typeof operator in JavaScript is used to determine the data type of a variable or an expression.
let x = 10;
let y = "Hello";
console.log(typeof x);
// Output: "number"
console.log(typeof y);
// Output: "string"
In JavaScript, keys in an array are the numeric indices used to access its elements. Arrays start counting from 0, so the first element is at index 0, the second at index 1, and so on.
let myArray = [10, 20, 30];
console.log(myArray[0]);
// Output: 10
split() method in JavaScript -
Ans - split() method is used to split a string into an array of substring.
Just Screen Recorded a JavaScript Method for you guys. Hope you learn something from this.
#JavaScript #js
JavaScript Complete free Resources
1/ Websites:
📌 http://freecodecamp.org
📌 http://javascript.info
📌 http://javascriptquiz.com
📌 http://developer.mozilla.org
📌 http://eloquentjavascript.net
📌 http://w3schools.com
📌 http://khanacademy.org
📌 http://codecademy.com
📌 http://learn-js.org
2/ Books:
📕 Eloquent JavaScript
📕 JavaScript: The good parts
📕 Learn JavaScript visually
📕 JavaScript: The definitive guide
📕 A smarter way to learn JavaScript
📕 You Don't Know JS
📕 Effective JavaScript
📕 Speaking JavaScript
3/ YouTube Channels:
▶️ Traversy Media
▶️ Programming with Mosh
▶️ Web Dev Simplified
▶️ Academind
▶️ Fireship
▶️ Dev Ed
4/ Podcasts:
📻 Syntax
📻 JavaScript Jabber
📻 Modern Web
📻 Full-stack radio
📻 Codepen Radio
📻 ShopTalk
📻 JAMstack Radio
5/ Coding Challenge Platforms:
🧩 http://codewars.com
🧩 http://codingame.com
🧩 http://coderbyte.com
🧩 http://exercism.io
🧩 http://edabit.com
6/ Mobile Apps:
📱 SoloLearn
📱 Codemurai
📱 Mimo
📱 Grasshopper
📱 Programming Hero
📱 Programming Hub
Angular 17 and the new angular.dev site has been officially released.
How to particularly check if a variable is array in JavaScript?
What is typeOf operator in JavaScript?
What are keys in array in JavaScript?
What is the behavior of the following JavaScript function?
function someFunction(n) { while (true) { console.log(n); } }
I will post small byte sized topics for you everyday. 😊 read 📚 them and learn them...
Correct answer is:
["Orange", "Lemon"]
Why? -
Answer- The slice() method in JavaScript extracts a section of array.
Here fruits.slice(1, 3) will start extracting the elements from index 1 upto index 3.
However index 3 element will not be included in the returned array by splice method.
Questions arises- what is array?
What is index in array?
What will be the Output?
const fruits = ["Banana", "Orange", "Lemon", "Apple", "Mango"];
const citrus = fruits.slice(1, 3);
Web Development CS JS Python JavaScript Hacking ReactJs Python django Flask CSS Frontend Backend Full Stack Java Node Pdf Books:
Chat group link
https://t.me/+2KE896TMwHkxOWE1
Resources aka PDfs and Ebooks group link
https://t.me/+eweUkdFwlho4YjRl
😒😒 don't leave this group, i will share items here 😀
