I was coding in the dark (a challenge) and couldn't lookup or test my code.
I forgot what round up was called (Math.celi) So I wanted to be extra sure i got it right and came up with this code.
var elm = document.createElement('input')_x000D_
elm.type = 'week'_x000D_
elm.valueAsDate = new Date()_x000D_
var week = elm.value.split('W').pop()_x000D_
_x000D_
console.log(week)
_x000D_
But still i recommend any other solution that isn't required by the DOM.