以下が、現時点(2018/9/3)の安定版のバージョン。
$ node -v
@ def foo[T: scala.reflect.ClassTag](obj: Any): Unit = obj match { | |
case t: T => println(t.getClass.getName) | |
case _ => println("ng") | |
} | |
defined function foo | |
@ foo[Int](1) | |
java.lang.Integer | |
<head> | |
<title>Spin radio button</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div class="forms-area"> | |
<h3>性別</h3> | |
<div class="classic-area"> | |
<div class="" ><input type="radio" name="classic-gender" value="1"> 男性</div> | |
<div class="" ><input type="radio" name="classic-gender" value="2"> 女性</div> |
いつもいつもいつもRe:VIEWの記法に悩んでぐぐってしまう皆さんへ送るチートシートです。
名称 | ルール | 概要・備考 |
---|---|---|
段落 | 1行以上の空行をはさむと別の段落になる | HTMLでいうP |
見出し | =ではじまる行 | =の個数で、章・節・項・段という感じで増えます。HTMLで言うH1, H2, H3, H4, H5 |
function checkUnread() { | |
const unreadsArray = document.querySelectorAll('.channel_name .badge.pull-right'); | |
let counter = 0; | |
unreadsArray.forEach((value, index, array) => { | |
const innterString = value.innerHTML; | |
const parseData = parseInt(innterString, 10); | |
if(!isNaN(parseData)) { | |
counter += parseData; | |
} |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2017 mohemohe <[email protected]> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |