SajjadRobin

Learn every day

  • Like on facebookLike on facebook
  • Follow me on TwitterFollow me on Twitter
  • Subscribe to youtube channelSubscribe to youtube channel
  • Add SajjadRobin in your circleAdd SajjadRobin in your circle
  • LinkedInLinkedIn
  • FeedFeed

Category: Javascript

javascript good parts: object

Javascript

0

Javascript – The Good Parts: Object

  • August 28, 2018

After Javascript: Grammar now it’s time for Object. Simple types of JavaScript are Numbers Strings Booleans null Undefined All others are Objects Simple Object:

JavaScript
1
2
3
4
5
6
7
 
var dentist = {
     'first-name' : 'Sajjadul',
     'last-name' :  'Robin',
     'age' : 30
};
 

Retrieval:

JavaScript
1
2
3
 
dentist['first-name'] ;// Sajjadul
 

JavaScript
1
2
3
 
dentist.age; // 30
 

If a key does[…]

Share this:

  • Tweet
  • Email

Read more

javascript good parts: grammar

Javascript

0

Javascript – The Good Parts : Grammar

  • August 28, 2018

I started to read a book : JavaScript: The Good Parts by Douglas Crockford. I am keeping a short note for myself and others if useful for future. It’s about[…]

Share this:

  • Tweet
  • Email

Read more

  • Get your dream job

    Learn web development
  • Go social, go viral

  • Like on Facebook

    Like on Facebook
  • Recent Posts

    • ETL in Python – read csv, json files
    • Javascript – The Good Parts: Object
    • Javascript – The Good Parts : Grammar
    • How to delete duplicate rows from a table
    • How to setup virtual host in xampp
  • Categories

    • apache
    • How To
    • Javascript
    • MySql
    • MySql
    • php
    • Python
    • security
    • Udemy
    • Web Development in Bengali
    • Wordpress website
  • Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
    To find out more, including how to control cookies, see here: Cookie Policy
  • Like on facebookLike on facebook
  • Follow me on TwitterFollow me on Twitter
  • Subscribe to youtube channelSubscribe to youtube channel
  • Add SajjadRobin in your circleAdd SajjadRobin in your circle
  • LinkedInLinkedIn
  • FeedFeed

© Copyright 2018 sajjadrobin.