Skip to content

Instantly share code, notes, and snippets.

View hsh2001's full-sized avatar
😆
Hello

Asher Hwang hsh2001

😆
Hello
  • Seoul, Republic of Korea
View GitHub Profile
🖤
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sticky!</title>
<style>
* {
margin: 0;
@hsh2001
hsh2001 / isSameObject.js
Created February 5, 2020 06:05
Check object is same
function isSameObject(a, b) {
if (a === b) return true;
for (let key in a) {
if (a[key] !== b[key]) return false;
}
return true;
}

Hello! Please visit http://dev.hsh.kr . If you want talk with me, please leave a comment here. Korean / English available.