Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.3.min.js " type="text/javascript"></script>
</head>
<body>
<div id="test"></div>
<script>
$(document).ready(function () {
var s = "Hello javascript";
var char = "";
for (i = 0; i < s.length; i++) {
var res = s.charAt(i);
char = char + res
}
$("#test").html(char + "</br>" + "The length of string is " + s.length + " characters!");
});
</script>
</body>
</html>
The most helpful JQUERY solutions