Skip to content

Instantly share code, notes, and snippets.

View Weredime's full-sized avatar

Weredime Weredime

View GitHub Profile
@Weredime
Weredime / ms-name-set-office.com
Created March 3, 2022 15:21
Set your name to make your friends take another look on office.com
const setName = (name) => document.querySelector("#hero-heading").innerText = `Good ${document.querySelector("#hero-heading").innerText.match(/Good (.*), (.*)/)[1]}, ${name}`;
// Example
setName("Sus")