javascript-tutorial / javascript-tutorial/en.javascript.info
optional chaining: error in summary?
未關閉
還沒有人認領這個 Issue。
- 主要語言
- HTML
- 星號
- 25.5k
- 分支
- 4k
- PR 合併指標
- 30 天內沒有已合併 PR
描述
The Summary section of page https://javascript.info/optional-chaining reads:
-
obj?.prop – returns obj.prop if obj exists, otherwise undefined. -
obj?.[prop] – returns obj[prop] if obj exists, otherwise undefined. -
obj.method?.() – calls obj.method() if obj.method exists, otherwise returns undefined.
but it seems that the first 2 lines should rather say:
- ... obj.prop if obj.prop exists...
- ...obj[prop] if obj[prop] exists...
=> actually in both cases when obj does not exist, as explained before in the chapter, it will throw an error.
貢獻指南
這個儲存庫沒有索引到貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
開啟連結的 javascript.info 頁面中的 optional chaining 章節,並將 Summary 中的措辭與前面對屬性和方法存取的說明進行比較。如果該說明確認了所回報的差異,請更新 Summary 中的兩個項目符號,然後檢查轉譯後的頁面,確保 Summary 正確且清楚。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- javascript
- 領域
- documentation
- Issue 類型
- 文件
- 難度
- 1/5
- 預估耗時
- 1 小時以內
- 活躍度
- 停滯
- 描述清晰度
- 描述清楚
- 新手友好度
- 55/100