Welcome to my blog. I keep it simple around here, kind of into that 90s nostalgia feel if you can't tell. Have a look around, share what you like. If you need to get in touch, my contact info is down below.
Page 2
asdf
var x = 1;
let y = 1;
if (true) {
var x = 2;
let y = 2;
}
console.log(x);
// expected output: 2
console.log(y);
// expected output: 1
<?php
class Car {
function Car() {
$this->model = "Tesla";
}
}
// create an object
$Lightning = new Car();
// show object properties
echo $Lightning->model;
?>
asdf asdf asdf asdf
First Blog Post (Copy)
Hey yall.
This is a blog post.
With a really long post.
And more lines.