Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #14 from redimpulz/develop_for_challenge
Browse files Browse the repository at this point in the history
Develop for challenge
  • Loading branch information
takahash authored Nov 8, 2023
2 parents 7f3ac66 + 75759b3 commit 4b02a4b
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion __tests__/object/script.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ describe("オブジェクトの問題2", () => {

describe("オブジェクトの問題3", () => {
test("正しい結果が返ってきている", () => {
expect(func3()).toEqual("Leanne Graham,Sincere@april.bizRomaguera-Crona");
expect(func3()).toEqual("Leanne Graham,Sincere@april.biz,Romaguera-Crona");
});
});
4 changes: 2 additions & 2 deletions basic/script.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// ループ・配列・データ型の問題
export const func1 = (n) => {
// ここに回答
// このコードを完成させてください
};

// 条件分岐・データ型の問題
export const func2 = (n) => {
// ここに回答
// このコードを完成させてください
};
2 changes: 1 addition & 1 deletion dom/script.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const main = () => {
// ここに回答
// このコードを完成させてください
};

window.addEventListener("load", main);
2 changes: 1 addition & 1 deletion event/script.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const main = () => {
// ここに回答
// このコードを完成させてください
};

window.addEventListener("load", main);
4 changes: 2 additions & 2 deletions function/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ const students = [
];

export const func1 = () => {
// ここに回答
// このコードを完成させてください
};

export const func2 = () => {
// ここに回答
// このコードを完成させてください
};
6 changes: 3 additions & 3 deletions object/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ const person = {
};

export const func1 = () => {
// ここに回答
// このコードを完成させてください
};

export const func2 = () => {
// ここに回答
// このコードを完成させてください
};

const jsonStr = `
Expand Down Expand Up @@ -39,5 +39,5 @@ const jsonStr = `
`;

export const func3 = () => {
// ここに回答
// このコードを完成させてください
};
6 changes: 3 additions & 3 deletions promise/script.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// 非同期処理
export const func1 = async () => {
// ここに回答
// このコードを完成させてください
};

// 直列で非同期処理
export const func2 = async () => {
// ここに回答
// このコードを完成させてください
};

// 並列で非同期処理
export const func3 = async () => {
// ここに回答
// このコードを完成させてください
};

0 comments on commit 4b02a4b

Please sign in to comment.