code Node.js project [Live updating] The Ground Rule:Common Javascript practise1) Maintainabilityis always the first priority when making any decision. (Please refer to following section for detail)2) Transparency:4) Horizontal dependency should be minimise5) Although you don't
code Love is function loveIs() { function isLove(date) { if (date.isInfinite) { return true } return isLove(date + 1) } const today = 0 if(isLove(today)) { console.log('I love you') return } } loveIs() // A never return recursion