Skip to content

Commit

Permalink
added comments to Solved and Unsolved code
Browse files Browse the repository at this point in the history
  • Loading branch information
gchoi2u committed Dec 14, 2020
1 parent cf671d8 commit 1ceafe5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
19 changes: 8 additions & 11 deletions Develop/index.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
// array of questions for user
const questions = [
// TODO: Include packages needed for this application

];
// TODO: Create an array of questions for user input
const questions = [];

// function to write README file
function writeToFile(fileName, data) {
}
// TODO: Create a function to write README file
function writeToFile(fileName, data) {}

// function to initialize program
function init() {
// TODO: Create a function to initialize app
function init() {}

}

// function call to initialize program
// Function call to initialize app
init();
14 changes: 13 additions & 1 deletion Develop/utils/generateMarkdown.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
// function to generate markdown for README
// TODO: Create a function that returns a license badge based on which license is passed in
// If there is no license, return an empty string
function renderLicenseBadge(license) {}

// TODO: Create a function that returns the license link
// If there is no license, return an empty string
function renderLicenseLink(license) {}

// TODO: Create a function that returns the license section of README
// If there is no license, return an empty string
function renderLicenseSection(license) {}

// TODO: Create a function to generate markdown for README
function generateMarkdown(data) {
return `# ${data.title}
Expand Down

0 comments on commit 1ceafe5

Please sign in to comment.