Object Inside Function

JavaScript object properties can also be defined as functions and is a widely used way.

        var calculate = {
            collection: function (n1, n2) {
                return n1 + n2;
            },
            extraction: function (n1, n2) {
                return n1 - n2;
            },
            pow: function (n1, n2) {
                return n1 * n2;
            },
            division: function (n1, n2) {
                return n1 / n2;
            }
        }
        document.write(calculate.collection(3, 5))
        document.write(extraction.collection(3, 5))
        document.write(pow.collection(3, 5))
        document.write(division.collection(3, 5))

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Create a website or blog at WordPress.com

Up ↑

Design a site like this with WordPress.com
Get started