<!DOCTYPE html>
<html>
<body>
<h3>Giriş:</h3>
<textarea id="Textarea">Cümleyi buraya girin</textarea>
<button type="button" onclick="f();">Bilgi</button>
<p>Kelime ve Karakter sayısı bilgisi için basın.</p>
<p id="bilgi"></p>
<script>
function f() {
const cumle = document.getElementById("Textarea").value,
karakter = cumle.length,
kelime = cumle.replace(/\n/g, " ").trim().split(" ").length
document.getElementById("bilgi").innerHTML = "Kelime: "+kelime+" "+
"Karakter: "+karakter;
}
</script>
</body>
</html>