JSFiddle - React, Tailwind, and code Playground
by booktu8
HTML
<h1>
</h1>
CSS
*{
margin:0;
padding:0;
}
a{
text-decoration:none;
}
h1{
width:100%;
height:30px;
background-color:pink;
padding:30px;
}
JavaScript
const people = {
name: '涂微沐',
age: 1,
hobby: ['游泳', '画画', '下棋'],
fahter:{
name: '涂俊涛',
age: 30,
job: 'front-end'},
SayHello: function(name, age) {
alert('我的姓名是' + name + ',我的年龄是' + age)
}
}
people.SayHello(1, people.age)
console.log(people.father)