Use keyComparator to compare the key value pair array : keyComparator « Mochkit « JavaScript DHTML






Use keyComparator to compare the key value pair array

 
<!--
MochiKit is dual-licensed software.  It is available under the terms of the
MIT License, or the Academic Free License version 2.1.  The full text of
each license is included below.
-->

<!-- Code revised from MochiKit demo code -->

<html>
<head>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Base.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Iter.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DOM.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Style.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Logging.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Iter.js"></script>
</head>
<body>

<pre id="test">
<script type="text/javascript">

    var a1 = {"a": 1, "b": 2, "c": 2};
    var a2 = {"a": 2, "b": 1, "c": 2};
    alert( keyComparator("a")(a1, a2));
    alert( keyComparator("c")(a1, a2));
    alert( keyComparator("c", "b")(a1, a2));
    alert( keyComparator("c", "a")(a1, a2));

</script>
</pre>
</body>
</html>

   
  








Related examples in the same category

1.keyComparator function