// random number generator

var theDecimal = 0;
    function newProblem(){
        theDecimal = Math.floor(Math.random()*256); //math.floor chops off decimals and rounds
        document.getElementById("startNumber").innerHTML = theDecimal;
        }

Recommended Answers

All 2 Replies

I need to convert the integer in order to display the ones complement and twos complement... please help I have very little experience with coding so I am most comfortable with functions. Thanks :)

I am afraid you're posting in the wrong forum; you want the JavaScript forum, under Web Development. Despite the names, Java and JavaScript are completely unrelated.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.