• We just launched and are currently in beta. Join us as we build and grow the community.

JavaScript - Get Average Number Automatically

kiler1233

Ad Revenue Expert
K Rep
0
0
0
Rep
0
K Vouches
0
0
0
Vouches
0
Posts
130
Likes
148
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 300 XP
In this tutorial we will create a Get Average Number Automatically using JavaScript. This code will auto calculate the average of a number when user enter a number in the text input. The code itself use JavaScript onkeyup() to automatically call a specific function that calculate the given numbers by getting the sum of all numbers divided by the number of the text inputs. This code is free to use, you can modify it as your own,

We will be using JavaScript as a server-side scripting language because It allows greater control of your web page behavior than HTML alone. It is embedded in HTML that responsible to allow user to interact with the computer .

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html

    lang

    =

    "en"

    >
  3. <head

    >
  4. <meta

    charset

    =

    "UTF-8"

    name

    =

    "viewport"

    content

    =

    "width=device-width, initial-scale=1"

    /

    >
  5. <link

    rel

    =

    "stylesheet"

    type

    =

    "text/css"

    href

    =

    "css/bootstrap.css"

    /

    >
  6. </

    head

    >
  7. <body

    >
  8. <nav class

    =

    "navabar navbar-default"

    >
  9. <div

    class

    =

    "container-fluid"

    >
  10. <a

    class

    =

    "navbar-brand"

    href

    =

    "https://sourcecodester.com"

    >

    Sourcecodester</

    a

    >
  11. </

    div

    >
  12. </

    nav>
  13. <div

    class

    =

    "col-md-3"

    ></

    div

    >
  14. <div

    class

    =

    "col-md-6 well"

    >
  15. <h3

    class

    =

    "text-primary"

    >

    JavaScript - Get Average Number Automatically</

    h3

    >
  16. <hr

    style

    =

    "border-top:1px dotted;"

    /

    >
  17. <div

    class

    =

    "col-md-4"

    >
  18. <div

    class

    =

    "form-group"

    >
  19. <label

    >

    Grade #1</

    label

    >
  20. <input

    type

    =

    "number"

    id

    =

    "grade1"

    onkeyup

    =

    "calculateAve();"

    class

    =

    "form-control"

    /

    >
  21. </

    div

    >
  22. <div

    class

    =

    "form-group"

    >
  23. <label

    >

    Grade #2</

    label

    >
  24. <input

    type

    =

    "number"

    id

    =

    "grade2"

    onkeyup

    =

    "calculateAve();"

    class

    =

    "form-control"

    /

    >
  25. </

    div

    >
  26. <div

    class

    =

    "form-group"

    >
  27. <label

    >

    Grade #3</

    label

    >
  28. <input

    type

    =

    "number"

    id

    =

    "grade3"

    onkeyup

    =

    "calculateAve();"

    class

    =

    "form-control"

    /

    >
  29. </

    div

    >

  30. </

    div

    >
  31. <div

    class

    =

    "col-md-4"

    >
  32. <div

    class

    =

    "form-inline"

    >
  33. <label

    >

    Average Number</

    label

    >
  34. <input

    type

    =

    "text"

    class

    =

    "form-control"

    id

    =

    "result"

    readonly

    =

    "readonly"

    /

    >
  35. </

    div

    >
  36. </

    div

    >
  37. </

    div

    >
  38. <script

    src

    =

    "js/script.js"

    ></

    script

    >
  39. </

    body

    >
  40. </

    html

    >

Creating the Script

This code contains the script of the application. This code will calculate a given number automatically when entered. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. function

    calculateAve(

    )

    {
  2. var

    grade1=

    document.getElementById

    (

    'grade1'

    )

    .value

    ;
  3. var

    grade2=

    document.getElementById

    (

    'grade2'

    )

    .value

    ;
  4. var

    grade3=

    document.getElementById

    (

    'grade3'

    )

    .value

    ;
  5. var

    total;
  6. var

    ave;

  7. if

    (

    grade1 !=

    ""

    &&

    grade2 !=

    ""

    &&

    grade3 !=

    ""

    )

    {
  8. total=

    parseInt(

    grade1)

    +

    parseInt(

    grade2)

    +

    parseInt(

    grade3)

    ;
  9. ave=

    total/

    3

  10. document.getElementById

    (

    'result'

    )

    .value

    =

    ave.toFixed

    (

    0

    )

    ;
  11. }

  12. }

There you have it we successfully created a Get Average Number Automatically using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!


Download
You must upgrade your account or reply in the thread to view the hidden content.
 

452,496

329,143

329,151

Top