Beginner JavaScript Tutorial – 12 – Math Operators




Facebook – https://www.facebook.com/TheNewBoston-464114846956315/
GitHub – https://github.com/buckyroberts
Google+ – https://plus.google.com/+BuckyRoberts
LinkedIn – https://www.linkedin.com/in/buckyroberts
reddit – https://www.reddit.com/r/thenewboston/
Support – https://www.patreon.com/thenewboston
thenewboston – https://thenewboston.com/
Twitter – https://twitter.com/bucky_roberts

Original source


21 responses to “Beginner JavaScript Tutorial – 12 – Math Operators”

  1. <!doctype html>
    <html>
        <head>   
        </head>
        <body>
        <script type="text/javascript">
            var A=12;
            var B=13;
            var C=A+B;
            return C;
            document.write("C");       
            </script>   
        </body>
    </html> 

    could someone tell me whats wrong with this code?

Leave a Reply