Show huge tables in any device

We use Clusterize.js to display big data sets easily and CSS Grid to fix our HTML table.

Try to slide up/down and left/right in your phone/tablet.

Create your own native web component

Basic translator using Vanilla JavaScript

Find factors of a number

Snapshots using getUserMedia and HTML video

$button.addEventListener('click', () => {
  const context = $canvas.getContext('2d')

  context.drawImage($video, 0, 0, $canvas.width, $canvas.height)
})

navigator.mediaDevices.getUserMedia({video: true})
  .then(stream => $video.srcObject = stream)

It has to be https:

https://jsfiddle.net/gengns/emdjq8rh/