2023-05-31 08:29:41 +09:00
parent c73658b44d
commit 53482d6036
+10
@@ -40,6 +40,16 @@ else
}
```
```javascript
if (a === b)
{
thenProcess ();
afterProcess ();
}
else
elseProcess (); // 👍
```
### PHP
変数名、メソッド名はスネーク・ケースで記述し,クラス名はパスカル・ケースで記述するものとします.