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>
var reg_vowels = new RegExp("[aeiou]");
function isVowelRegEx(char) {
if (char.length === 1) {
return reg_vowels.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;
}
}
function isVowelChars(char) {
return char === 'a' || char === 'e' || char === 'i' || char === 'o' || char === 'u' || false;
}
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
regex |
| ready |
for loop |
| ready |
index |
| ready |
chars |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.