Skip to content

Instantly share code, notes, and snippets.

View tong9433's full-sized avatar

SongTongil tong9433

View GitHub Profile
@tong9433
tong9433 / makeobject.js
Last active July 19, 2017 00:26
과제
var healthObj = { showHealth : function() {
console.log(this.name + "-" + this.lastTime)
}
}
function makeObject(obj,proto){
Object.keys(obj).forEach(function(key){
obj[key] = {
value : obj[key]
header,nav,section,div,footer,ul,dd {margin:0;padding:0;}
li{list-style: none;}
ul{
width: 100%;
}
dt {
font-weight: bold;
font-size: 1.2em;
margin-bottom: 5px;
}
@tong9433
tong9433 / event.md
Last active July 13, 2017 00:15
20170712과제

Event Delegation 이란

<ul id="parent-list">
	<li id="post-1">Item 1</li>
	<li id="post-2" >Item 2</li>
	<li id="post-3">Item 3</li>
	<li id="post-4">Item 4</li>
	<li id="post-5">Item 5</li>
	<li id="post-6">Item 6</li>
@tong9433
tong9433 / 20170711.md
Last active July 12, 2017 00:26
20170711과제

동적인 파라미터 처리

function myFunction(x, y) {
    y = y || 0;
}
// default 설정 

x = findMax(1, 123, 500, 115, 44, 88);

function findMax() {
@tong9433
tong9433 / gist:2038ac39e9f9739cd8b8b77d5a571bf1
Last active July 11, 2017 05:36
객체, 배열 탐색 관련 실습

객체, 배열 탐색 관련 실습 😄

  1. 실습) 새로운 배열 만들기 : son 파일에서 newest 항목만 뽑아서 새로운 배열을 반환하는 함수 만들기
const news_list = [
    {
        "title": "sbs",
        "imgurl": "http://static.naver.net/newsstand/2017/0313/article_img/9054/173200/001.jpg",
        "newslist": [
            "[가보니] 가상 경주도 즐기고, 내 손으로 자동차도 만들고",
            "리캡차'가 사라진다",

!! 의미

boolean으로 형 변환. 0을 false로, 1을 true로.

ex1)

let a = 0;
console.log(a);   // 0
console.log(!a);  // true