我是从python的背景来看javascript的,想问一下如何解释我看到的一些代码。
在Python中,我可以获得以下代码/输出:
Python代码:
myarray = ["a","b", "c"]
for item in myarray:
print (item)
Python输出
a
b
c
在Javascript中,这给了我一些不同的东西:
Javascript代码:
var myarray = ["a","b","c"]
for(var item in myarray){
co
当我以juaguarjs作为模板运行jsdoc时,我得到了错误ReferenceError: filename is not defined。
在以下情况下不会出现错误:-我运行jsdoc的默认模板-我运行jsdoc与jaguarjs模板,但没有教程配置。
项目的结构
|-- tut
| |-- tut1.md
| +--tut1.json
|-- jsdocconf.json
+-- Gruntfile.js
tut1.md
# Title 1
Text text text
tut1.json
{
"title": "Tutorial 1