r22 vs r23
......
218218
219219
{{{#orange 결론}}} : 실수값으로도 텍스트 값으로도 일치하지 않는 점에서 {{{#!wiki style="display: inline; font-family: monospace;"
220220
this\[{{{#green 변수명}}}\]}}}도 올바른 입력이 아니다.
221
222
===# this \[{{{#orange \"}}}{{{#green 변수명}}}{{{#orange \"}}}\] #===
223
작은따옴표로 된다면 큰따옴표로는 되는지 테스트.
224
if this["a"]=1 테스트
225
{{{#!if this["a"]==1
226
출력}}}
227
----
228
if this["a"]='1' 테스트
229
{{{#!if this["a"]=='1'
230
출력}}}
231
----
232
if this["a"]="1" 테스트
233
{{{#!if this["a"]=="1"
234
출력}}}