Parse that string into a Date object:
var myDate = new Date('10/11/1955 10:40:50 AM');
Then use the usual methods to get the date's day of month (getDate) / month (getMonth) / year (getFullYear).
var noTime = new Date(myDate.getFullYear(), myDate.getMonth(), myDate.getDate());