Jak usunąć środkowe znaki w String JavaScript

var str = "Hello World";
str = str.slice(0, 3) + str.slice(4);
console.log(str)
Spotless Sable