We are happy to announce that today you will create your next project in the Visual Studio environment! This will be a Web application. We will use java Script as a Programming Language.

Today, you will create the game "Guess Number". You will learn how to use "if-else if-else" constructions, random numbers generator and work with the Message Boxes.

We will create the same project using different programming languages (VB.NET, C#, C++, Python, Java Script) and on different platforms (Desktop app, Web App, Mobile App, Arduino project). This is what makes the MATRIX an unique programming learning methodology.

MATRIX team

Java Script (Web App)

PROJECT 2.5.2
Guess Number

 

For our projects we will use Microsoft Visual Studio 2019. It allows to create projects in different programming languages and on different platforms.

At the time of creating our resource, the functionality of New Visual Web Developer in Visual Studio 2022 has not been fully developed by the Microsoft team, so we will use Visual Studio 2019.

Download and install Visual Studio 2019 on your Personal Compiuter.
Download Visual Studio 2019 >>>

Our Online Simulator will help you to make the game "Guess Number".

Now a little theory for our project:

Note: For the comments in Java Script we have to use // simbol.

1. Random numbers

To create a random generator in the Java Script we will use the next code:

// Returns a random integer from 0 to 100:
Math.floor(Math.random() * 100) + 1;

 

Math.floor(Math.random() * 100); is for getting random numbers from 0 to 99. After adding +1 we will get random numbers from 1 to 100.

 

2. Message Box

Message Box Displays a message in a dialog box. We are using a simple Message Box in our project. Here is an example:

alert(" Some Text here ");

 

 

 

3. if - else if - else

You know how to use the if operator in java Script. else if is for adding one more condition. else means that code written after else will run if none of the above conditions is right.

Example:

if (a>b)
{
alert( "More");
}
else if (a<b)
{
alert( "Less");
}
else

}
alert( "Equal");
}

 

4. parseInt

We are using parseInt in front of document.getElementById("Text1").value, to tell the program that the text in the text boxes are numbers, so it is possible to compare them or perform other mathematical operations.

Example:

if (parseInt(document.getElementById("Text1").value) > parseInt(document.getElementById("Text2").value)) {
alert("More"); }

 

Now it is time to start the simulation. Repeat the stages the simulator shows you in your Visual Studio.

 

Conclusion:

You have created web application - the game "Guess Number" in the Visual Studio environment with the Java Script programming language. At first, we worked on the program interface (visual side), after we wrote the programming code.

Now you know how to use if-else if-else construction, Random Numbers generator and Massage Box in Java Script.