We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/iceener/files-stdio-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
javascript.md•351 B
# JavaScript Notes
## Variables
```javascript
const x = 1;
let y = 2;
var z = 3;
```
## Functions
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
const arrow = (x) => x * 2;
```
## Array Methods
### map()
Transforms each element.
### filter()
Filters elements based on condition.
### reduce()
Reduces array to single value.