The following code shows an example of a Program to Find the Count of Negative and Positive Numbers in JavaScript
Programmingempire
<html>
<head>
<title>Find Count of Numbers</title>
<script>
var positive=0;
var negative=0;
var zero=0;
var x;
var str="";
for(var i=1;i<=10;i++)
{
x=prompt("Enter a number: ", "0");
x=Number(x);
str=str+x+"<br/>";
if(x>0)
positive++;
else if(x<0)
negative++;
else
zero++;
}
document.write("Numbers Entered:<br/>"+str);
document.write("<br/>Count of Positive Numbers: "+positive);
document.write("<br/>Count of Negative Numbers: "+negative);
document.write("<br/>Count of Zero: "+zero);
</script>
</head>
<body>
</body>
</html>
Output

Further Reading
Evolution of JavaScript from ES1 to ES2020
Introduction to HTML DOM Methods in JavaScript
- Angular
- ASP.NET
- C
- C#
- C++
- CSS
- Dot Net Framework
- HTML
- IoT
- Java
- JavaScript
- Kotlin
- PHP
- Power Bi
- Python
- Scratch 3.0
- TypeScript
- VB.NET
