Giter VIP home page Giter VIP logo

do-you-know-vanilla's Introduction

do-you-know-vaniilla

do-you-know-vanilla

๐ŸŒ This repository contains contents about Vanilla JS and project developed with Vanilla JS.

I have written the contents of Vanilla JS in the issues section and related simple projects link to each repository via a README.

The goal of this repository is to understand Vanilla JS and to become familiar with its development.


๐Ÿ“š Category of contents (Go to MD-BOOK | Go to Issues)

โœ๏ธ Basic of JS

๐Ÿ” Advance of JS

๐Ÿ’ป Skill of JS


๐Ÿ”จ Simple Projects

do-you-know-vanilla's People

Contributors

bkjang avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

kim-link

do-you-know-vanilla's Issues

๋ฐฐ์—ด ๋‚ด์žฅํ•จ์ˆ˜์˜ ํ™œ์šฉ(sort, reduce, filter...)

Object.keys(), Object.values(), Object.entries() ๊ทธ๋ฆฌ๊ณ  for...in

Object.keys(), Object.values(), Object.entries() ๊ทธ๋ฆฌ๊ณ  for...in

Object.keys(), Object.values(), Object.entries()

const developer = {
  name : 'BKJang',
  age : 26,
  lang: 'Korean'
}

console.log(Object.keys(developer)); // ["name", "age", "lang"]
console.log(Object.values(developer)); // ["BKJang", 26, "Korean"]
console.log(Object.entries(developer)); 
/**
0: ["name", "BKJang"]
1: ["age", 26]
2: ["lang", "Korean"]
*/

for...in

const developer = {
  name : 'BKJang',
  age : 26,
  lang: 'Korean'
}

for(let key in developer) {
  console.log(`${key} : ${developer[key]}`);
}
/**
name : BKJang
age : 26
lang: 'Korean'
*/

Prototype

๐Ÿ™ Reference

  • ์ธ์‚ฌ์ด๋“œ ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ (์†กํ˜•์ฃผ, ๊ณ ํ˜•์ค€)
  • Poiemaweb - Prototype

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.