变量命名习惯
<h4>表示数组 Array</h4>
<blockquote>
<p>通常后缀带 <strong>s</strong></p>
</blockquote>
<p><strong>list
items
datas</strong></p>
<h4>表示对象 Object</h4>
<blockquote>
<p>通常后缀不带 <strong>s</strong></p>
</blockquote>
<p><strong>item
data
dd
d</strong></p>
<h4>表示数字、字符串类型的值 String|Number</h4>
<p><strong>value
val
vv
v</strong></p>
<h4>表示键名索引(字符串)</h4>
<p><strong>key
kk
k</strong></p>
<h4>表示数字索引(数字)</h4>
<p><strong>index
ii
i
n</strong></p>
<h4>表示函数返回值</h4>
<p><strong>ret
r</strong></p>
<h4>表示布尔值</h4>
<p><strong>bool
isTrue</strong></p>
<h4>表示数字</h4>
<p><strong>num
n</strong></p>
<h4>伪代码单词</h4>
<p>pig
cat
dog
ant
fox</p>
<p>tom
jim
leo
amy
ann
ada</p>