<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="text">
<script>
document.querySelector('input').onkeyup=function(){
this.value=this.value.replace(/^(.)/, el => el.toUpperCase());
};
</script>
</body>
</html>