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
2014-07-06 andrew reading text file with utf-8 encoding using javaCASE 1. PrintStream out =newPrintStream(System.out,true,"UTF-8"); out.println(str); CASE 2. import j...
2014-12-18 andrew [펌]JMX를 이용하여 JVM 모니터링 하기JMX를 이용하여 JVM 모니터링 하기 JDK 1.5 부터 JVM에는 Platform MBeanServer가 내장되어 있어 jvm 파라미터로 Platform MBeanServer...