Stack overflow question 13095305

list all array prototype functions in ie8

HTML

<!doctype html>
<html lang="en">
<head>
<meta charset= "utf-8">
<title>Small Page</title>
<style>
</style>
<script>
onload= function(){
var testnames= ['concat', 'constructor', 'every', 'filter', 'forEach',
'indexOf', 'join', 'lastIndexOf', 'length', 'map', 'pop', 'push', 'reduce',
'reduceRight', 'reverse', 'shift', 'slice', 'some', 'sort', 'splice',
'toLocaleString', 'toString', 'unshift'],
    L= 23;
    while(L){
        if(!(testnames[--L]in Array.prototype)) testnames.splice(L, 1);
    }
    document.getElementsByTagName('textarea')[0].value= testnames;
}
</script>

</head>
<body>

    StackOverflow question : <a href="http://stackoverflow.com/questions/13095305/list-all-array-prototype-functions-in-ie8">list all array prototype functions in ie8</a><br/><br/>
    
<p>   <textarea rows="8" cols="60"> </textarea>     </p>

</body>
</html>