Pankaj Singh | Backend Wizard | नारायणः मम जीवनम् Profile picture
Backend Wizard 🧙‍♂️ | Open Source Advocate 🔥 | Rocking the Remote Life 💻 | Let's Connect & Grow in Open Source World 🌊🤝
Jan 22, 2022 4 tweets 2 min read
🎯Objects in JavaScripts
#programming #webdeveloper #javascript #100DaysOfCode
A thread 🧵 In simple words objects is the collection of name-value pairs. Objects is JavaScript are same as dictionaries in Python , hashtable in c and c++ and hashmap in Java.
The "name" part is a JavaScript string, while the value can be any JavaScript value
Jan 19, 2022 13 tweets 4 min read
🎯10 most useful string methods in Java String is an object that represents sequence of char values. Strings are immutable in Java.There are two ways to create string in Java
1 - By String literal
2 - By new keyword
Jan 14, 2022 7 tweets 2 min read
🎯 Type Coercion in JavaScript
A Thread 🧵 Type Coercion is process of automatic or implicit conversion of value from one data type to another. Conversion from Number to String , String to Number, Boolean to Number and so on. Type coercion occurs when different types of operators are applied to the values.