0 Comments

This page shows how you van use the “getDifferences” function in JavaScript to get the differences between 2 arrays, based on the value of a “key” property.

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>General research page containing only vanilla.js.</title>
<style type="text/css">
    /* Resets */
    *, *:after, *:before {
        margin: 0; /* Margin zero is used to prevent unnecessary white space. */
        padding: 0; /* Padding zero is used to prevent unnecessary white space. */
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        /* Border boxing is used, so the padding, margin and borders are within the width and height of de element. */
        box-sizing: border-box; 
    }

    html, body {
        height: 100%;
        max-height: 100%;
    }

    body {
        padding: 20px;
    }
    button {
        padding: 2px 4px 2px 4px;
        cursor: pointer;
    }
</style>
</head>
<body>
<button onclick="app.onExecuteClick(event);">Execute</button>

<script type="text/javascript">
    var app = (function ()
    {
        var self = {};

        self.onExecuteClick = function (e)
        {
            var array1 = [{ Id: 1, Name: 'Name1' }, { Id: 2, Name: 'Name2' }, { Id: 3, Name: 'Name3' }, { Id: 4, Name: 'Name4' }];
            var array2 = [{ Id: 1, Name: 'Name1' }, { Id: 2, Name: 'Name2' }, { Id: 3, Name: 'Name3' }];

            debugger;
            var differences = self.getDifferences(array1, array2, "Id");
            differences = self.getDifferences(array2, array1, "Id");

        };

        self.getDifferences = function (array1, array2, key)
        {
            // Directly return arrays, when one array contains elements and the other is empty.
            var array1HasValues = (array1 && array1.length && array1.length > 0);
            var array2HasValues = (array2 && array2.length && array2.length > 0);
            if (array1HasValues && !array2HasValues) { return array1; }
            if (!array1HasValues && array2HasValues) { return array2; }

            // Determine biggest and smallest array.
            var biggestArray = (array1.length >= array2.length) ? array1 : array2;
            var smallestArray = (array1.length >= array2.length) ? array2 : array1;               

            // Make hashtable of properties "key" in smallestArray
            var smallestKeys = {};
            smallestArray.forEach(function (obj)
            {
                smallestKeys[obj[key]] = obj;
            });

            // Return all elements in biggestArray, unless in smallestArray.
            var differences = biggestArray.filter(function (obj)
            {
                return !(obj[key] in smallestKeys);
            });

            return differences;
        };

        return self;
    })();
</script>
</body>
</html>

 

Result

Result will be the object: { Id: 4, Name: ‘Name4’ }

Leave a Reply

Your email address will not be published. Required fields are marked *

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

Related Posts