j0hnik,
Да и навряд ли там у Вас дело в приведении, вот тут, например, все наоборот получается
<html>
<head>
<meta charset = "utf-8" />
<style>
</style>
</head>
<body>
<script>
i = 100000
console.time("first")
while(i--) "1" + "1"
console.timeEnd("first")
i = 100000
console.time("second")
while(i--) "1" + 1
console.timeEnd("second")
</script>
</body>
</html>