Tejaswini GorripotuforCoding Minutes Blogcodingminutes.hashnode.net·Sep 28, 2022JavaScript Variables and ConstantsIn the previous article, we got an introduction to JavaScript. As the first step in moving forward in the series, let us understand how we declare variables and constants in JavaScript. Before moving on, it's fair to understand what are variables and...Sharannyo Basu and 6 others are discussing this7 people are discussing thisDiscuss·100 likes·979 readsJavaScriptJavaScriptAmazing article! 3
Juliet AdeboyeforJuliet Adeboyejuliet.hashnode.net·Feb 7, 2021Understanding Variables, Functions, and Scope in JavaScriptIntroduction JavaScript is a programming language that makes web pages responsive. Thus, you’ll need to use some form of JavaScript to create a web page that goes beyond just displaying letters and pictures to being intuitive and user-friendly. We wo...John Ebri and 4 others are discussing this5 people are discussing thisDiscuss·88 likes·449 readsJavaScript
John ButlerforJohn Butler's Blogjohnbutlerdev.hashnode.net·Jun 8, 2021FeaturedUsing and Securing Environment Variables with AWS Lambda, KMS and Node.jsA well-written function needs to be adaptable, which can be achieved by utilizing environment variables. Environment variables give us the ability to adapt our function's behavior without needing to update code. This article will discuss how to acces...Discuss·80 likes·4.8K readsAWS
Preetika Prakashforpreetikaprakash.hashnode.net·Apr 22, 2023final variable - what is it ?Final variables are written in capital letters as per the standards. Final variables cannot be modified. Final variables don’t have any default value, without initializing and printing it will give an error. When used Inside the Method, final Vari...DiscussJava
Saurabh KumarforSkcoder's Blogskcodes.hashnode.net·Apr 19, 2023Basic Programming Concepts: Variables and data types in C++Introduction Hello and welcome to article number three in our mini-series called "Basic Programming Concepts". Our aim with this series is to give you a strong base of knowledge for the upcoming series on Data Structures and Algorithms. In this artic...Discuss·1 like·38 readsC++
Fasina AyomikunforFashcodewithfash.hashnode.net·Apr 16, 2023Don't Declare Javascript Variable Without Reading This!When using the javascript programming language, one of the most important concepts is declaring variables. As easy as it may sound, this can lead to a five-hour bug fix which is every developer's nightmare. Fully understanding the concept of variable...Discuss·9 likes·124 readsJavaScript
Karan ThakkarforKaran's blogkaransss.hashnode.net·Apr 14, 2023DataScience - OOPS Part-1'OOPS' stands for Object Oriented Programming System Firstly, comes classes. Classes are blueprint or skeleton or overall definition of OOPs things. Eg. If I say there is a car, and ask you to sit inside. Then you will ask which one? Because there ar...DiscussObject Oriented Programming
Ekene ogbuforEkene ogbu's blogkenecci.hashnode.net·Apr 13, 2023Javascript VariablesJavaScript Variables: A Beginner's Guide Variables are one of the most fundamental concepts in any programming language. They allow you to store and manipulate data in your code. In this article, we will explore what variables are, how to declare and...DiscussJavaScript
Ready Player MellieforReady Player Melliereadyplayermellie.hashnode.net·Apr 5, 2023JavaScript concepts: Variables, types and scopesThere will come a time in your life as a developer when you find yourself needing to store some information when crafting awesome applications. That moment will happen almost two seconds after you open your first index.js. So it is best that we tackl...DiscussJavaScript
Devashish Jadhavfordevj.hashnode.net·Mar 28, 2023var , let & constWhat are variables? Variables are used to temporarily store values that are needed for a specific purpose in the program. For example, you might use a variable to store the user's name when they enter it into a form, or to keep track of the score in ...Discussvar let const
Andrea ChiarelliforThe Turing Machineandychiare-1672850528353.hashnode.net·Mar 25, 2023The Naming ProblemA famous quote by Phil Karlton reads, "There are only two hard things in Computer Science: cache invalidation and naming things." Leaving aside cache invalidation, which we can return to another time, why should naming things be so hard? Giving names...Discussnaming
Elucian MoiseforProgramming Languagessagecode.hashnode.net·Mar 22, 2023Go: Define VariablesIn Go we can declare variables using keyword var. The variables can be visible in global scope or local. Global variables are definet at package level. Local variables can be defined in functions. Example: package main import "fmt" // global variab...Discuss·10 likesGo Languagegolang
Manish SahaniforManish Sahani's blogmanishsahani.hashnode.net·Mar 20, 2023Understanding the Different Variable Declarations in JavaScript: var, let, and constIn JavaScript, variables are declared using the var, let, and const keywords. Each of these keywords has its own unique characteristics that determine how the variable can be used in the code. One of the main differences between these three keywords ...Discuss·2 likesJavaScript