Joined August 2016
14 Photos and videos
CodeDraken retweeted
21 Dec 2019
It's gonna be a challenge but I'm committing to #100DaysOfGatsby from Jan 1st 2020. Anyone want to join me? #100DaysOfCode
34
27
232
18 Dec 2019
The 2nd tutorial of my canvas/game dev series is out now. The 1st tutorial was about drawing shapes and getting used to how the canvas works; this one focuses on the parts of an animation. "Creating a Bouncing Ball Animation Using JavaScript and Canvas" link.medium.com/KyhnZbMhw2
4
CodeDraken retweeted
What's the hardest part about learning how to build a React App for the first time? RT for reach!
141
190
326
CodeDraken retweeted
26 Nov 2019
freeCodeCamp will offer 4 new Python certifications in 2020: ⚗️Scientific Computing 💾Data Analysis 🔒Information Security 🤖Machine Learning And that's not all. We're working on lots of other exciting curriculum upgrades. freecodecamp.org/news/python…
52
376
1,331
17 Nov 2019
Some people think it's technology that ruins society but really it's society that ruins technology.
2
14 Nov 2019
The first part of my HTML5/JavaScript game development series is out now. It still needs some refining but I'm excited to begin working on the next project-based tutorials. 😄 "Drawing on an HTML5 Canvas using JavaScript" medium.com/p/creating-and-dr… #javascript #gamedev #tutorial

1
1
11 Nov 2019
What does this #javascript code output? #100DaysOfCode A) 5, 99 B) 5, 10 C) Uncaught SyntaxError: Identifier 'y' has already been declared D) Uncaught SyntaxError: Unexpected token '{'
1
5
CodeDraken retweeted
25 Oct 2019
🔥 Here is a neat one! Since arrays are objects, we can destructure their indexes to easily grab the first and last items.
63
892
3,318
People making worthwhile contributions to open-source for #Hacktoberfest #hacktoberfest2019 😂🤦‍♀️
1
1
8
CodeDraken retweeted
Another (somewhat related) pop quiz: var x = { ...false }; Error, or works? If works, contents of x? How?
9
8
53
CodeDraken retweeted
Pop quiz: var x = new Boolean(true); var y = new Boolean(false); How do you turn `x` and `y` into their respective primitive boolean equivalents (true and false)?
50
34
195
A cool and unique tutorial on making a game with vanilla JavaScript: "Design and Make a Video Game" youtu.be/xI7BI30rpRw via @YouTube by @NewThinkTank
31 Jul 2019
Apparently, I earned so much money on @Medium that it became NaN. 😂 @Medium I can take payment in the form of a yacht too or a Starbucks gift card thanks ☕️🚤 P.S. if your developers need help with NaN I believe I have a tutorial on it. 😆
1
4
24 Jun 2019
What does this code log to the console in #javascript? ``` 'use strict' const deepObj = { name: 'Deep Object', logThis() { function logThisInside() { console.log(this) } logThisInside() } } deepObj.logThis() ``` #100DaysOfCode #webdev #CodeNewbie
28% A. undefined
25% B. Window / Global Object
21% C. function logThis
26% D. deepObj {name,logThis}
53 votes • Final results
1
2
12
24 Jun 2019
The Answer (spoilers): A. `undefined` 1. It's not B the global object because strict-mode is enabled. 2. JS does not set `this` to a function by itself so it's not C. 3. `logThisInside` was called directly and not as a method, `this` does not point to an object, it's not D.
1
24 Jun 2019
If you're interested in more examples of `this` in JavaScript and want to learn more about it then check out my tutorial on it. Feedback is appreciated. 😄 codeburst.io/the-simple-guid…
1
2