• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4453 shaares
3 / 7
Filters
139 results tagged javascript

Cheat sheet for moving from jQuery to vanilla JavaScript | Tobias Ahlin

QRCode

With browser support of ES6 having reached more than 96%, it might be a good idea to move away from jQuery to accomplish basic tasks like fetching data, selecting elements, styling and animating them, as Tobias Ahlin argues.

https://tobiasahlin.com/blog/move-from-jquery-to-vanilla-javascript/
August 20, 2019 at 11:10:51 AM EDT *
javascript jquery
FILLER

50 Things You Should Know Before Going to a JavaScript Developer Job Interview

QRCode
https://medium.com/better-programming/50-thingsyou-should-know-before-going-to-a-javascript-developer-job-interview-b1f1dfbf945c
July 23, 2019 at 12:26:33 PM EDT *
javascript interviewing coding
FILLER

TDD Changed My Life – JavaScript Scene – Medium

QRCode

What is TDD?
TDD stands for Test Driven Development. The process is simple:

  1. Before you write implementation code, write some code that proves that the implementation works or fails. Watch the test fail before moving to the next step (this is how we know that a passing test is not a false positive — how we test our tests).
  2. Write the implementation code and watch the test pass.
  3. Refactor if needed. You should feel confident refactoring your code now that you have a test to tell you if you’ve broken something.
https://medium.com/javascript-scene/tdd-changed-my-life-5af0ce099f80
June 20, 2019 at 4:08:59 PM EDT *
coding javascript
FILLER

28 Relevant Javascript Interview Questions Part I - The first 4

QRCode

For the past 12 years, I have been on both sides of the Front End Interview table. Sadly though, the emphasis is always put on Javascript during those rounds and the two other important languages - HTML and CSS - are not usually given the same weight.

https://dev.to/adyngom/28-relevant-javascript-interview-questions-part-i-the-first-4-2a16
April 26, 2019 at 2:00:24 PM EDT *
javascript coding interviewing
FILLER

When (and why) you should use ES6 arrow functions — and when you shouldn’t

QRCode

Arrow functions (also called “fat arrow functions”) are undoubtedly one of the more popular features of ES6. They introduced a new way of writing concise functions.

https://medium.freecodecamp.org/when-and-why-you-should-use-es6-arrow-functions-and-when-you-shouldnt-3d851d7f0b26
March 8, 2019 at 3:56:15 PM EST *
javascript
FILLER

JavaScript Async - The Callback & The Controller

QRCode

Events are the first place you are likely to meet asynchronous functions, but once you have events and an event dispatching system you can't stop there. Any long running function has to be implemented as an asynchronous non-blocking function if the UI is to remain responsive. This causes all sorts of difficulties that go beyond events and event handling.

https://www.i-programmer.info/programming/javascript/12416.html
March 8, 2019 at 3:55:33 PM EST *
javascript
FILLER

JavaScript Data Structures - The String Object

QRCode

The String is the most basic and most useful of the native JavaScript data structures. It can also be used as a starting point for, or be incorporated into, many other data structures. Let's see how it all works.

https://www.i-programmer.info/programming/javascript/4138.html
March 8, 2019 at 3:47:44 PM EST *
javascript ebook
FILLER

Understanding Higher-Order Functions in JavaScript

QRCode

Higher-Order Functions

Higher order functions are functions that operate on other functions, either by taking them as arguments or by returning them. In simple words, A Higher-Order function is a function that receives a function as an argument or returns the function as output.

For example, Array.prototype.map, Array.prototype.filter and Array.prototype.reduce are some of the Higher-Order functions built into the language.

https://blog.bitsrc.io/understanding-higher-order-functions-in-javascript-75461803bad
October 29, 2018 at 3:28:25 PM EDT *
javascript
FILLER

JavaScript Frameworks Considered Harmful – Bob Myers – Medium

QRCode

The dirty little secret about JS frameworks, not just Ember, is their abysmal performance on mobile devices. First, we have to download the huge runtime on a slow connection. Then, we have massive amounts of framework code running on a device which has a slower processor to start with, but may also have an inferior JS engine. The result can be latencies in seconds or even tens of seconds merely to display a page. There is no simple solution to this problem.

https://medium.com/@torazaburo/javascript-frameworks-considered-harmful-a7448382d9a0
August 13, 2018 at 10:30:53 AM EDT *
javascript
FILLER

Free Frontend - CSS Menus

QRCode

Hand-picked HTML and CSS code examples, tutorials and articles

https://freefrontend.com/css-menu
August 6, 2018 at 2:29:35 PM EDT *
css webdesign javascript menu
FILLER

How to use Chrome DevTools like a Pro | The JotForm Blog

QRCode
  1. DOM Search by CSS Selectors
  2. Material and Page Color Palettes
  3. Multiple Cursor
  4. Get the current element with “$0”
  5. View Event Listeners
  6. Media Query
  7. Copy Response
  8. Run Predefined Snippets
https://www.jotform.com/blog/how-to-use-chrome-devtools-like-a-pro
July 30, 2018 at 2:45:32 PM EDT *
chrome devtools javascript webdesign
FILLER

How you can improve your workflow using the JavaScript console

QRCode

When we think about the console, the first thing that comes to mind and the console.log, right? But there are many more methods than those we imagine. Now we will see how to make the most of using the console, and I’ll give you some tips to make them these methods more readable

https://medium.freecodecamp.org/how-you-can-improve-your-workflow-using-the-javascript-console-bdd7823a9472
June 23, 2018 at 11:18:26 AM EDT *
javascript coding
FILLER

A Tricky JavaScript Interview Question Asked by Google and Amazon

QRCode

The following will be a short explanation, along with some solutions, of a popular JavaScript question that tends to get asked in developer interviews.

This question deals with the topics: closures, setTimeout, and scoping.

https://medium.com/coderbyte/a-tricky-javascript-interview-question-asked-by-google-and-amazon-48d212890703
June 4, 2018 at 12:34:11 PM EDT *
javascript coding interviewing
FILLER

D3 gallery

QRCode

Welcome to the D3 gallery! More examples are available on bl.ocks.org/mbostock. If you want to share an example and don't have your own hosting, consider using Gist and bl.ocks.org. If you want to share or view live examples try vida.io.

https://github.com/d3/d3/wiki/Gallery
April 11, 2018 at 1:44:13 PM EDT *
javascript data
FILLER

JavaScript Bit Manipulation

QRCode

Bit manipulation in JavaScript is complicated by the way that it attempts to be completely type free. One of the consequences of this type free approach is that numbers are always stored as 64-bit floating point values - i.e. double precision floating point.

Yes - that's correct JavaScript doesn't have an integer type that you can make use of. When needed JavaScript will perform an internal conversion to a 32-bit value but you can't gain access directly to this integer and it is converted back to floating point format as soon as it is possible.

http://www.i-programmer.info/programming/javascript/2550.html
April 11, 2018 at 10:09:45 AM EDT *
javascript
FILLER

10 Interview QuestionsEvery JavaScript Developer Should Know

QRCode

JavaScript is special, and it plays a critical role in almost every large application. What is it about JavaScript that makes it meaningfully different from other languages?
Here are some questions that will help you explore the stuff that really matters:

https://medium.com/javascript-scene/10-interview-questions-every-javascript-developer-should-know-6fa6bdf5ad95
April 3, 2018 at 7:46:46 AM EDT *
interviewing javascript
FILLER

How I construct a pen on CodePen by Sten Hougaard on CodePen

QRCode

One my prefered playgrounds is SVG. It is Scalable Vector Graphics, which in practice means that you can draw something in the browser using some tags, some stying and some code. How cool is that? Compared with a piece of paper and a pen you can go crazy and the result is generated instantly as you change the elements of your playground in your pen on CodePen.

https://codepen.io/netsi1964/post/how-i-construct-a-pen-on-codepen
February 27, 2018 at 10:52:55 AM EST *
codepen svg coding javascript
FILLER

Learn map, filter and reduce in Javascript – João Miguel Cunha – Medium

QRCode

This article is pointed towards beginners in Javascript or people who are just starting working with functional Javascript and never heard of map, filter and reduce. If you already have a lot of practice with these, you can just jump to the end of the article where I point you towards some other interesting pieces.

https://medium.com/@joomiguelcunha/learn-map-filter-and-reduce-in-javascript-ea59009593c4
February 27, 2018 at 9:28:28 AM EST *
javascript
FILLER

jQuery 3 - Animation - use velocity.js instead!

QRCode

Use velocity.js instead!

http://www.i-programmer.info/programming/jquery/10461.html?start=1
August 2, 2017 at 8:35:56 AM EDT *
jquery animation javascript
FILLER

How to use Velocity to easily add animations | Creative Bloq

QRCode

Velocity.js is a free, lightweight library that you should be using - developer Neal O'Grady gets you started.

http://www.creativebloq.com/web-design/use-velocity-add-animations-61515280
August 2, 2017 at 8:35:10 AM EDT *
jquery animation javascript
FILLER
3 / 7
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community