project-array-of-numbers
A simple webpage where we work collaboratively on arrays. You can enter more than one numbers then you can subtract, display, find an average of them and compare them
development-strategy.md
fileAs a site visitor, I can see a general page markup, with css styling
assigned to
Pavel
reviewersOguz
,Olga
andSayed
This user story was developed on a branch called html_css
As a site visitor, I can add a number, see the number I added and check if it is valid
assigned to
Oguz
reviewersPavel
,Olga
andSayed
This user story was developed on a branch called add-number
prompt
method to ask the user to enter a numberNumber
methodpush
method to add user’s number to the main shared array of numbersAs a site visitor, I can to calculate the average of all numbers which I entered
assigned to
Olga
reviewersOguz
,Pavel
,Yauhenia
andSayed
This user story was developed on a branch called find-average
As a site visitor, I want to give a number and see all the numbers greater than my input number
Assigned to
Sayed Kazimi
reviewers
Pavel
,Olga
andOguz
Developed in a branch called find-greater-than
prompt
method for the user inputNumber
method to convert the user input from string data type to number data typepush
method to add all lower numbers to the main shared array of numbersAs a site visitor, I want to give a number and see all the numbers less than my input number
Assigned to
Sayed Kazimi
reviewers
Pavel
,Olga
andOguz
Developed in a branch called find-less-than
prompt
method for the user inputNumber
method to convert the user input from string data type to number data typepush
method to add all lower numbers to the main shared array of numbersAs a site visitor, I can remove a number, see the number I want to remove and get a confirmation if it is removed
assigned to
Yauheniya
reviewersOguz
andSayed
This user story was developed on a branch called remove-number
prompt
method to ask what is wanted to be removedNumber
to user’s inputremove
method to remove user’s number.