有人能解释一下下面这两种写法的区别吗?
function foo(bar: ?string) { console.log(bar); }
和:
function foo(bar?: string) { console.log(bar); }
什么时候使用哪种写法?
用户名或电子邮箱地址
密码