thanks guys! but you're right.. I haven't started yet.... this is the problem....
The process of finding the largest value (i.e., the maximum of a group of values) is used frequently computer applications. Write a Javascript program that input a series of 10 single digit numbers as characters, determines the largest of the number and output XHTML text that displays the largest number. Your program should use 3 variables as follows:
a.) COUNTER: A counter to count to 10 (i.e. to keep track of how many number have been input and to determine when all 10 number have been processed).
b.) NUMBER: The current digit input to the program.
c.) LARGEST: The largest number found so far.
P.S.
Hope you can help me about this problem