10 search resultsShowing 1~10 results

Stocked
chick307

@chick307

関数の引数名を取得する

AngularJSのDIとかで利用されているやつです。 関数オブジェクトのtoString()メソッドがソースコードを返すので、それを利用します。 function getParams(func...

18
15
Comment0
chick307

@chick307

Python2の文字列型

Python2にはstrとunicodeの2つの文字列型がある。 普通はunicode型を使うべき。 str型 strは文字列と言うよりバイト列という方が正しい(と思う)。 aiueo = 'あ...

4
3
Comment0
chick307

@chick307

ブロックコメント

ブロックコメントの工夫 と似たテクニック。 /* */ console.log(1); /* */ /* * console.log(2); /* */ この方法だとCSSでも使える。 /* *...

14
14
Comment0
chick307

@chick307

スワップ

余計な変数を使わないスワップ var a = 0; var b = 1; console.log(a, b); // 0 1 a = [b, b = a][0]; console.log(a,...

6
6
Comment0

10 search resultsShowing 1~10 results

Qiita is a knowledge sharing service for engineers.

  1. You can follow users and tags
  2. You can stock useful information
  3. You can make edit suggestions for articles
Functions that can be used after logging in