jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script>
function isVowelRegEx(char) {
if (char.length === 1) {
return /[aeiou]/.test(char);
}
}
var vowels = new Array('a', 'e', 'i', 'o', 'u');
function isVowel(char) {
if (char.length === 1) {
var len = vowels.length;
for (var i = 0; i < len; i++) {
if (vowels[i] === char) {
return true;
}
}
return false;
}
}
var vowelsindex = "aeiou";
function isVowelindex(char) {
if (char.length === 1) {
return vowelsindex.indexOf(char) >= 0 ? true : false;
}
}
var vowels = ['a', 'e', 'i', 'o', 'u'];
function vowelIndexOfArray(char) {
if (char.length === 1) {
if (vowels.indexOf(char) > 0) {
return true;
}
}
return false;
}
var vowelProps = {'a':true,'e':true,'i':true,'o':true,'u':true};
function vowelProperty(char) {
return vowelProps[char] || false;
}
function vowelSwitch(char) {
switch (char) {
case 'a':
return true;
case 'e':
return true;
case 'i':
return true;
case 'o':
return true;
case 'u':
return true;
default:
return false;
}
}
function isVowelChars(char) {
return char === 'a' || char === 'e' || char === 'i' || char === 'o' || char === 'u' || false;
}
function isVowelUnderscore(char){
return _.contains(vowels, char);
}
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
regex |
| ready |
for loop bestcase |
| ready |
index |
| ready |
VowelIndexOfArray |
| ready |
for loop worstcase |
| ready |
VowelProp |
| ready |
VowelSwitch |
| ready |
isVowelChars |
| ready |
isVowelUnderscore |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.