value isn't a valid jQuery method. You probably want:
$(document).ready(function(){
alert($("#myInput").val());
alert($("#myInput").val().length);
});
The .val method (with no parameters passed) returns the matched element's current value (if applicable). With normal/basic Javascript, you would have used .value on an element object, but $() returns a "jQuery object" that is nothing like an HTMLElement (what is returned from document.getElementById). So a jQuery object doesn't have a value property and returns undefined. Whereas document.getElementById("myInput").value (and adding .length at the end) would've worked for you.
The .length property is a basic property of string variables in Javascript (and arrays). Since the result returned from $() is an array-like object, it has a length property that represents how many elements matched your selector. In your case, it matched 1, the element with the id of "myInput".