Comment obtenir du temps GMT dans JavaScript

  var currentDate = new Date()
  var noSeconds = currentDate.getSeconds()
  var noMinutes = currentDate.getMinutes()
  var noHours = currentDate.getHours()
68Duck