UNPKG
tutim-js
Version:
latest (0.1.1)
0.1.1
0.1.0
Our life is strawberries
github.com/zleight1/tutim-js
zleight1/tutim-js
tutim-js
/
src
/
strawberry.js
9 lines
(7 loc)
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
class
Strawberry
{
constructor
(
) {}
sweeten
(
noun =
'Our'
) {
return
`
${noun}
life is strawberries.`
; } }
module
.
exports
=
Strawberry
;