Try
`${Date()}`.slice(4,15)
console.log( `${Date()}`.slice(4,15) )
We use here standard JS functionalities: template literals, Date object which is cast to string, and slice. This is probably shortest solution which meet OP requirements (no time, only date)