0
Mac에서 Visual Studio 코드로 Javascript를 작성하고 있습니다.Visual Studio 코드의 Intellisense로 함수 설명서를 어떻게 봅니까?
내가 JSDoc 형식으로 문서화 된이 기능이 있습니다 그러나
/**
* Adds the passed Matter Body to the simulation.
* @param {Matter.Body} body - The body to add to the physics simulation
* @param {string} imageUrl - The URL of the image to use to represent this body in the simulation. It should match an image URL that has already been added via loadImages()
* @param {function} [onCollide] - Optional function to call when this body collides
*/
addObject(body, imageUrl, onCollide) {
을 IntelliSense를 툴팁이 튀어 나올 때는 다음과 같습니다 : 모든 뒤죽박죽 및 표시되지 않는 것
전체 문서 전체 기능 문서를 툴팁에 표시하기 위해 필요한 몇 가지 종류의 키 조합이 있습니까?
Alt + F12는 개체 정의를 봅니다. 그게 무슨 뜻입니까? – ifconfig