I hereby claim:
- I am xmd404 on github.
- I am xmd404 (https://keybase.io/xmd404) on keybase.
- I have a public key ASDe8XHZCwlMy_Sk02SQYsIPLCyZ5huvsc4exllCLVjixwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Saved URL should look like this: | |
| // javascript:<function> | |
| // replace <function> with the following text | |
| (function(){ | |
| // Grab the username and password input fields | |
| user = document.getElementById('txtUserName'); | |
| pass = document.getElementById('txtPassword'); | |
| // Grab the submit button, oddly named 'punch' |
Between
| // Please write your code directly below the corresponding numbers. | |
| // #1 | |
| const fullName = 'Xavier Duncan'; | |
| const birthYear = 1991; | |
| // #2 | |
| const myArray = []; | |
| // #3 | |
| myArray.push(fullName, birthYear); |
| // Please write your code directly below the corresponding numbers. | |
| // #1 | |
| let fullName = 'Xavier Duncan'; | |
| let birthYear = 1991; | |
| // #2 | |
| let myArray = []; | |
| // #3 | |
| myArray.push(fullName, birthYear); |
| console.log(1); | |
| (_ => console.log(2))(); | |
| eval('console.log(3);'); | |
| console.log.call(null, 4); | |
| console.log.apply(null, [5]); | |
| new Function('console.log(6)')(); | |
| Reflect.apply(console.log, null, [7]) | |
| Reflect.construct(function(){console.log(8)}, []); | |
| Function.prototype.apply.call(console.log, null, [9]); | |
| Function.prototype.call.call(console.log, null, 10); |