Upload packaging folder
[platform/upstream/iotjs.git] / tools / test / run_pass / issue / issue-137.js
1 /* Copyright 2015-present Samsung Electronics Co., Ltd. and other contributors
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16
17 // FIX: issue #137.
18 console.log('hello world');
19 console.log(1);
20 console.log(9 + 10);
21 console.log(null);
22 console.log(true);
23 console.log(false);
24 console.log(undefined);
25 console.log(0.09);
26 console.log(NaN);
27 console.log(function () {});
28 console.log(function f() { return 0; });
29 console.log({});
30 console.log({a:1, b:2});
31 console.log([]);
32 console.log([1,2,3]);
33 console.log("%s=%d", "1+10", 1 + 10);
34 console.log("%s+%s=%d", 2, 10, 2 + 10);
35 console.log("%d+%d=%d", 3, 10, 3 + 10);
36 console.log("%s+%s=%s", 4, 10, 4 + 10);
37 console.log("%d+%d=%d", "5", "10", 5 + 10);