How to properly type a function with 2 nullable parameters

前端 未结 0 1544
醉梦人生
醉梦人生 2021-02-06 06:48

I have the following JavaScript function:

fuction combinedHash(first, second) {
  if (!first) {
    return second;
  }
  if (!second) {
    return first;
  }

  r         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题