Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
duqing2026
/
code-sketch
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
code-sketch
/
problems
/
map.js
duqing2026
代码、编辑和打印网站
adb7761
7 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
116 Bytes
/**
*
@title
map.js
*
@description
在此处添加题目描述
*/
let
a = [
1
,
2
,
3
].
map
(
n
=>
n*
2
)
console
.
log
(a)