angular 2のnull合体演算子(??)と同等のものは何ですか?
C#では、次の操作を実行できます。
string str = name ?? FirstName ?? "First Name is null";
結合は、||
演算子を介して実行されます。
let str:string = name || FirstName || "name is null and FirstName is null";
詳細と説明については、 this questionも参照してください。
たぶんあなたが達成したいのはこれです:
string str = name ? name : FirstName ? FirstName : "First Name is null";