The Code for Fizz Buzz



    //get values from the user. We need to get the Fizz and the Buzz values.
    function getValues(){
    
        //get user values from the page.
        let fizzValue = document.getElementById("fizzValue").value;
        let buzzValue = document.getElementById("buzzValue").value;
        
        //parse for numbers.
        fizzValue = parseInt(fizzValue);
        buzzValue = parseInt(buzzValue);
        //check they are integers.
        if (Number.isInteger(fizzValue) && Number.isInteger(buzzValue)){
            //we can call fizzBuzz
            let fbArray = fizzBuzz(fizzValue,buzzValue);
            //call displayData and write them to the screen.
            displayData(fbArray);
    
            }else{
        alert("You must enter intgers");
            }
    }
    
    //create using ternary operator and for loop to go from 1 to 100
    function fizzBuzz(fizzValue,buzzValue){
        let returnArray = [];
    
        for (let i = 1; i <=100; i++) {
        let value = 
        ((i % fizzValue == 0 ? 'Fizz' : '') + (i % buzzValue == 0 ? 'Buzz' : '') || i)
             returnArray.push(value);
        }
        return returnArray;
    }
    
    //loop over the array and create a tablerow for each item
    function displayData(fbArray){
    
        //get table body element from the page
        let tableBody = document.getElementById("results");
    
        //get the template row
        let templateRow = document.getElementById("fbTemplate");
    
        //clear the table first
        tableBody.innerHTML = "";
    
        for (let index = 0; index < fbArray.length; index += 5) {
            let tableRow = document.importNode(templateRow.content, true);
    
            //grab just the td's to put into array
            //add all the rows to the table
            let rowCols = tableRow.querySelectorAll("td");
            rowCols[0].classList.add(fbArray[index]);
            rowCols[0].textContent = fbArray[index];
    
            rowCols[1].classList.add(fbArray[index+1]);
            rowCols[1].textContent = fbArray[index+1];
    
            rowCols[2].classList.add(fbArray[index+2]);
            rowCols[2].textContent = fbArray[index+2];
    
            rowCols[3].classList.add(fbArray[index+3]);
            rowCols[3].textContent = fbArray[index+3];
    
            rowCols[4].classList.add(fbArray[index+4]);
            rowCols[4].textContent = fbArray[index+4];
    
            tableBody.appendChild(tableRow);
            
        }
    }
    

The Code is structured in three functions
getValues()

Gets the FIZZ and BUZZ values from the HTML input, which are validated to make sure they're integers. If the input is valid, the fizzBuzz() function is called, which returns its value to the displayData() function to display the values in an HTML table.


fizzBuzz()

Creates an empty array and loops through the numbers 1 to 100. The loop uses a ternary operator to determine whether each number matches the FIZZ and/or BUZZ values. The results are pushed into an array and returned to the getValues() function.


DisplayData()

Creates an HTML table for the return results. Loops through and creates a table row for each item in the returnArray, five items per row.