Devina
Code runner
Node
18.15.0
1
2
3
4
5
6
const
hello =
'hello'
;
const
ucfirst = string => string.charAt
(
0
)
.toUpperCase
(
)
+ string.slice
(
1
)
;
console.log
(
`
$
{
ucfirst
(
hello
)
}
world!`
)
;