javascript ==, ===의 의미 0==false// true 0===false// false, because they are of a different type 1=="1"// true, auto type coercion 1==="1"// false, because they are of a different type Share this:Click to share on Twitter (Opens in new window)Click to share on Facebook (Opens in new window) Related Posted on 2014-07-21 9:35 PM by andrew Comment 📂This entry was posted in JAVA javascript
2015-04-05 andrew [펌]Tomcat7 tomcat-jdbc 설정 – Broken pipe 에러 회피tomcat-jdbc로 MySQL에 연결한 경우 "java.net.SocketException: Broken pipe" 에러가 발생하는 경우를 가끔 볼 수 있다. 대부분의 경우 c...
2021-05-18 andrew 싱글톤(Singleton) 클래스class Singleton { static final Singleton _instance = Singleton._internal(); factory Singleton() { re...