add a run button

This commit is contained in:
Lavrentiy Rubtsov 2022-04-30 03:31:24 +06:00 committed by GitHub
parent 291b5c05b9
commit 9bcd822a5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -214,7 +214,7 @@ alert( 'Interface'.toLowerCase() ); // interface
Or, if we want a single character lowercased:
```js
```js run
alert( 'Interface'[0].toLowerCase() ); // 'i'
```