# .prepend(val)

## Description

Returns a **new string** with `val` placed in front of the current string.

## Parameters

* **val** — value to prepend (stringified if necessary).

## Usage

```javascript
log "world".prepend("hello ") // "hello world"
```
