Code Monkey home page Code Monkey logo

fakefoursquare's People

Contributors

rbrisita avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

fakefoursquare's Issues

Thoughts on using ES6?

So what are your thoughts on using ES6 and hooking up Webpack/Babel? ES6 will allow you to give your code a little more structure with breaking it out into smaller chunks and importing what you need.

Use Template literals

const TPL_CARD = '\

By far, my favorite feature of ES6 is template literals. It allows you to easily manage your templates and you don't have to do a replace method to append your data.

EX:


const dataSource = {
   name: "Bobby Window",
   occupation: "Ladies Man",
   age: "None of your business!" 
}
const {name, occupation, age} = dataSource;
const example_tpl = `
   <div>
      <span>${name}</span>
      <span>${occupation}</span>
      <span>${age}</span>
  </div>
`

Use "then" method for this logic

function(response) {

I haven't used jQuery in a while, but I recall there being a .then() method which automatically resolves a promise

$.get('some_uri_.json').then((data) => {
// response logic goes here

return somedata;
}).done((data) => {
 // your data is ready to be binded to the DOM and the promise has been resolved. 
})

NOTE: Syntax might be a little off, but that's the basic concept

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.