Home

Search IconIcon to open search

PHP

# Notes

PHP took not the best part of JS - it has == and ===.

1
2
(0 == false)  //true
(0 === false) //false
# Docs
# Basics