how to convert this date Thu, 16 Feb 2017 08:00:00 GMT
to new format like hh:mm
my code so far :
var start = new Date(this.props.item.start); // this props returns Thu, 16 Feb 2017 08:00:00 GMT
var dateStr = start.format("hh:mm")
any suggestions?