Couldn't find help in this post
I got 2 strings. For example :
let str1 = '11:00'
let str2 = '08:00'
I need to be able to get the hours difference between - in this example str1-str2=3.
I tried to parseInt()
but it won't actually transform the whole string to numbers.
Any ides?