Day f #daysofMiva Coding Challenge: Values and Variables in JS

WBOY
Freigeben: 2024-08-31 00:30:02
Original
910 Leute haben es durchsucht

Hi guys. I've been so busy lately I haven't even had the time to document how my journey has been?. Regardless, I'll continue so stay tuned❤️.

For my day 5 documentation, I just did something very simple and short.

Day f #daysofMiva Coding Challenge: Values and Variables in JS

So as you can see from the above, it's a very simple task to do once you understand values and variables.

So what are values and variables?

Values in JavaScript

Think of values as the actual data or information you work with in JavaScript. These are like the ingredients in a recipe. Some examples of values are:

  • Numbers: Like 10, 3.14, or -5
  • Text (called strings): Like "Hello", "JavaScript is fun!", or "123"
  • Boolean: Which are just true or false
  • Others: There are also other types of values, like null (which means "nothing") or undefined (which means "not yet defined").

Variables in Javascript

Now, imagine you have a box with a label on it. You can put one of these values into that box and label it with a name. This labeled box is called a variable.

For example:

You might have a variable called age, and inside that box, you store the number 13.
You could have another variable called greeting, and in that box, you store the text "Hello, World!".

Here’s what it looks like in code:

let age = 13; // Here, 'age' is the variable, and '13' is the value stored in it. let greeting = "Hello, World!"; // 'greeting' is the variable, and the text is the value.
Nach dem Login kopieren

Why Use Variables?

Variables are helpful because they let you store data and then use or change it later. Instead of writing "Hello, World!" over and over, you can just write greeting wherever you need that message. If you need to change the message, you only need to update it in one place.
So, when you code in JavaScript, you're creating variables to store values, which you can then use to build your program!

Now that we're done with what values and variables are, let's unveil my assignment.

I started by first linking my second JS file which I'll be using called "assignment.js".
NB: We can link more than one JS file to a HTML file
Day f #daysofMiva Coding Challenge: Values and Variables in JS

Secondly, I went to my browser to open my console.

Day f #daysofMiva Coding Challenge: Values and Variables in JS
NB: To open your console, right click on your mouse, click on inspect and navigate to console

Day f #daysofMiva Coding Challenge: Values and Variables in JS
As we can see from the above console, only the output of my 1st JS file is showing.

I then went ahead to input my variables and values which will later run on the console as will be seen below.

Day f #daysofMiva Coding Challenge: Values and Variables in JS

Day f #daysofMiva Coding Challenge: Values and Variables in JS

And that’s a wrap for Day 5!? I told you it was simple—just like enjoying a slice of cake ? (minus the calories, of course). Thanks for sticking around and being awesome! More fun (and of course, a few more lines of code) are coming your way, so don’t forget to stay tuned. Until next time, happy coding! ✨

Das obige ist der detaillierte Inhalt vonDay f #daysofMiva Coding Challenge: Values and Variables in JS. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:dev.to
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!