We need to implement a functionality in javascript that provides particular week's first day given the week number and year as inputs. This should be a javascript function which expects week number and year as inputs and outputs first day (as date).
Ex: Get week 3 of 2016 year should return Jan 11, 2016.
I have checked ways of getting week's first day using month approach. But, don't know how to get week's first day based on week number.
Please help me in this regard.