Optional Call
TypeScriptの機能で,関数がundefinedでなければ実行し,undefinedであれば何もしないもの.
code:.ts
// do が undefined かどうかを見ている
something.do?.(args)
オプショナルコール