Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、私は行列を持っています:
c1 c2 c3 1 2
matrix[0][1] の値が空です。出力が得nullられました。matrix[0][1] の値 (文字列) を設定したいのですがn/a、どうすればよいですか?
null
n/a
これが必要かもしれません:
if (matrix[0][1] == null) { matrix[0][1] = 'n/a'; }
この条件は 1 つのインデックスのみです。上記の条件をループに入れて、行列のすべてのインデックスに対して実行します。一日の終わりに、マトリックスのヌルは「n/a」に置き換えられます