PrepaJS
JS Interview Master
Playground
Library Playground
Sandboxed JS Execution
Auto-Run
Execute
Source Editor
// PrepaJS Playground const greet = (name) => `Hello, ${name}!`; console.log(greet("Developer")); // Try some logic const nums = [1, 2, 3, 4, 5]; const sum = nums.reduce((a, b) => a + b, 0); console.log("Sum:", sum); sum;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
System Output
Clear
Awaiting Execution...