
# Coaching - Back to Basics 1
with Founders and Coders
---
## Back to Basics Programme
----
Learn to code through peer-led learning :two_women_holding_hands:
----
We'll learn as a group in Thursday workshops
----
I'll be your coach on this programme
----
Your coach is a guide :mage:
not a teacher :mortar_board:
---
## Javascript
----
JavaScript is a scripting language you can use to make web pages interactive.
It is one of the core technologies of the web, along with HTML and CSS, and is supported by all modern browsers.
---
## Features of JavaScript
---
### Variables
----
A variable is used to store information or data.
----
Each variable has a unique name.
----
```javascript=
var myNumber = 10;
var emptyVar;
```
---
### Assignment
----
We can _assign_ values to variables using a single `=`.
----
```javascript=
var myNumber = 10;
myNumber = 25;
console.log(myNumber)
// outputs 25
var emptyVar;
emptyVar = myNumber - 2;
```
----
```javascript=
var firstString = "Hello";
var secondString = "World";
var combinedString = firstString + " " + secondString;
```
{"metaMigratedAt":"2023-06-15T23:20:49.726Z","metaMigratedFrom":"YAML","title":"Coaching - Back to Basics 1","breaks":true,"slideOptions":"{\"theme\":\"white\"}","contributors":"[{\"id\":\"2967aacf-1990-431e-b963-91e79ce4a2bf\",\"add\":3035,\"del\":1819}]"}