-
Data Down / Actions Up
- http://emberjs.jsbin.com/nayaho/edit?html,js - Interdependent select boxes. No observers.
- http://ember-twiddle.com/2d7246875098d0dbb4a4 - One Way Input
-
Plain JSBin's
-
Ember Version Base JSBin's
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as Joi from '@hapi/joi' | |
import { Body, Controller, Module, NotImplementedException, Post, UsePipes } from '@nestjs/common' | |
import { NestFactory } from '@nestjs/core' | |
import axios from 'axios' | |
import * as Joiful from 'joiful' | |
import { ValidationPipe } from './validation.pipe' | |
class Implicit { | |
@Joiful.string().required() |
It's easy to trip up on the meaning of this
in JavaScript. The behavior is very different from other languages, which means we have to throw most preconceptions and intuition out the window.
The best way to think of this
in JS is as a hidden function argument which is passed in a slightly awkward way. Instead of the normal passing of arguments:
fn(arg1, arg2, arg3)