Hi there 👋
- I’m currently working on developing a 2D CAD web application
- How to reach me:
luc4leone@gmail.com

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusefunction copyWithin (array, startPasting, startCopying, endCopying) {
/* TYPE ERRORS */
// no arguments passed in
if (arguments.length === 0) {
throw new TypeError('undefined is not an array');
// I find it useful to read expr1 && expr2 as "if expr1 is true, than expr2"
// By definition, expr1 && expr2 returns expr2 if expr1 can be converted to true; otherwise, it returns expr2.
// Seeing things through an if statement helps me build this sort of mental shortcut.
function and(expr1, expr2) {
if (Boolean(expr1) === true) {
Forked from scripting/myWordEditor
A simple silo-free blogging tool that creates beautiful essay pages.
JavaScript