我有一個JavaScript源代碼,我不明白這個。你能幫我嗎,這是什麼意思?這是什麼意思?
Partnerek = (function() {
Partnerek = function() { }
//there are functions in this way
//I think this is a public function
Partnerek.foo = function foo()
{
//code
}
//there are functions in this way
//this is a non public function
function foosecondway()
{
//code
}
return Partnerek;
})()
它看起來像一個類,但這不是一個類。
- 這是什麼?
- 爲什麼程序員是這樣寫的?
- 這是一個好方法嗎?
- 什麼是回報值?
- 代碼中的兩個函數「參數」是否相同?
這是相當典型的現代Javascript代碼。你正在尋找一個廣泛的Javascript教程?網上有很多指南和教程,但是StackOverflow並不是尋找個人輔導的好地方。 – lanzz