1/*As we saw with our initial examples of function definitions, not every
2function explicitly returns a value. At its simplest, a function can
3even have an empty body.*/
4
5function doNothing() {}
6
7/*As written, this function is completely valid, but useless. Although
8the function doesn't have a return statement, JavaScript still
9implicitly returns a value.*/