aAb
z
z = a + b
| interface PersonA { | |
| name: string, | |
| group: string, | |
| item1: string, | |
| item2: string, | |
| } | |
| interface PersonB { | |
| name: string, |
| const synth = new Tone.Synth().toMaster(); | |
| const polySynth = new Tone.PolySynth(6, Tone.Synth).toMaster(); | |
| polySynth.volume.value = -5; | |
| Tone.Transport.bpm.value = 90; | |
| const chordAb = ["Ab3", "Cb4", "Eb4", "Gb4"]; | |
| const chordDb = ["Ab3", "Cb4", "Db4", "F4"]; | |
| const chordEb = ["Gb3", "Bb3", "Db4"]; |
| ................... | |
| .1D4.C.......C5.... | |
| ....A62......1..... | |
| ..:18A.......J..... | |
| .............1..... | |
| ..........C4.J..... | |
| ..........2Y21..... | |
| ............JJ..... | |
| ...........F21..... | |
| ............:11Aa.. |
.....................
............4C4......
..........1.404TFFFD.
..U..E...E..:02F.....
.......1D4...........
...N.51X...H.........
...........S.........
...........j.........
.....................
| { | |
| "1": { | |
| "0": { | |
| "title": "患者情報レコード" | |
| }, | |
| "1": { | |
| "title": "患者氏名" | |
| }, | |
| "2": { | |
| "title": "患者性別" |
| const somethingPromise = (ms) => | |
| new Promise((resolve) => setTimeout(resolve, ms)); | |
| const somethingErrorPromise = (ms) => | |
| new Promise((resolve) => { | |
| throw new Error(); | |
| }); | |
| describe("test", () => { | |
| it("test", async (done) => { |
いつも書いてる .subscribe((x) => {}, (err) => {}); は、RxJS 7.x から、@deprecated がつく。 ので、.subscribe({ next: (x) => {}, error: (err) => {} }); が recommended migration tools がやってくれるかどうか… RxJS - Subscribe Arguments https://rxjs.dev/deprecations/subscribe-arguments 6.6.4 https://github.com/ReactiveX/rxjs/blob/6.6.4/src/internal/Observable.ts#L80
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset=utf-8> | |
| <title></title> | |
| </head> | |
| <body> | |
| <button id="start-button">start</button> |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class BgmController : MonoBehaviour | |
| { | |
| //private CriAtomSource criAtomSource; | |
| private CriAtomExPlayback playback; | |
| private CriAtomExPlayer criAtomExPlayer; |