{"id":15587167,"url":"https://github.com/developer3027/webdevelopernotes","last_synced_at":"2026-01-26T00:37:59.113Z","repository":{"id":119588825,"uuid":"207034707","full_name":"Developer3027/WebDeveloperNotes","owner":"Developer3027","description":"This is a collection of reference material and notes on my journey to being a full stack web developer. ","archived":false,"fork":false,"pushed_at":"2019-09-13T13:00:00.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-20T16:13:42.983Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Developer3027.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-09-07T22:55:45.000Z","updated_at":"2019-09-13T13:00:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"31a5143f-4952-49a9-959e-a7668a04c662","html_url":"https://github.com/Developer3027/WebDeveloperNotes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Developer3027/WebDeveloperNotes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Developer3027%2FWebDeveloperNotes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Developer3027%2FWebDeveloperNotes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Developer3027%2FWebDeveloperNotes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Developer3027%2FWebDeveloperNotes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Developer3027","download_url":"https://codeload.github.com/Developer3027/WebDeveloperNotes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Developer3027%2FWebDeveloperNotes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28762873,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T00:37:26.264Z","status":"ssl_error","status_checked_at":"2026-01-26T00:37:25.959Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-02T22:00:53.289Z","updated_at":"2026-01-26T00:37:59.089Z","avatar_url":"https://github.com/Developer3027.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WebDeveloperNotes\nThis is a collection of reference material and notes on my journey to being a full stack web developer. \n\n## notes\n\nThis is a cheat sheet for beginners. This is for me to keep track of those things I use and want to keep track of. I hope you find it useful. This list is gonna continue to grow as I keep learning, so I am making an index here. At some point I will move this to the back and put in a table of content. Maybe after I get a little content.\n\n- Github MD\n- Java Script\n\n## github markdown :octocat:\n\nI enjoy writing README files for my projects. They are so useful and tons of fun to code! However, I keep losing the reference and every time I go to make one, I have to go hunt for it. Now I have it here. [click here](https://help.github.com/en/articles/basic-writing-and-formatting-syntax#using-emoji), for the MD reference. [click here](https://www.webfx.com/tools/emoji-cheat-sheet/), for the icon.\n\n Examples\n \n List: ```*li```           | *li \u003cbr\u003e\n Bold: ```**B**```         | **B** \u003cbr\u003e\n Italic: ```*B*```         | *B* \u003cbr\u003e\n Link: ```[B](https://)``` | [B](https://) \u003cbr\u003e\n Task: ```[ ], [x]```      | [ ], [x] \u003cbr\u003e\n\n# Basic JS\n\n**Data Types:**\n\n- String = characters, '', \"\"\n- Number = digit, 1, -1, .5\n- Boolean = true / false, on / off\n\n- defined = is set, this is known\n- undefined = spot in memory, no value\n- null: empty. No value\n\nString is sequence of characters, letters. Associate quotes with string. Number is not picky. Can be any type of number. positive, negative, fraction, etc. Boolean is a switch. Will either be yes or no. Get data typr with typeOf: _example: var a = 500; typeOf a will return number_\n\n**Variables**\n\n- var: use least (old), use at base scope (never in function)\n- let: (newer), variable can be modified after set. (use in function)\n- const: (newer), variable can not be changed once set. (always use this)\n\nfirst character can not be a number. can not declare keywords as variables. Declare multiple variables with comma separation. _example: var a = 'a', b = 'b', g = 50;_\n\n**Operators**\n\n- = assign\n- + add\n- - subtract\n- /* multiply\n- // divide\n- % Modulus\n- ++ increment\n- -- decrement\n\n\n**Different case types**\n\ncamelCase\nKaBobCase\n\n\n## Callback Functions \u003cbr\u003e\nA callback function is a function that is passed into another function as a parameter then invoked by that other function. In a callback function you are gonna have 3 things. \u003cbr\u003e\n* A higher Order function. This function gathers the stuff to make it work.\n* Callback. This function does the work, set outside of the HO function.\n* Invoke. To do the work you laid out.\nA higher order function is a function that accepts a callback as a parameter.\n\n**_example_**\n```\nfunction higherOrder(fn) {\n    console.log('About to call callback');\n    fn(); //callback function invoked\n    console.log('Callback has been invoked');\n}\nfunction callback() {\n    console.log('coming from a callback');\n}\nhigherOrder(callback);\n```\n## JS Loops\n\n**.forEach**\n```\nfunction forEach(array, callback) {\n    // To be Implemented\n}\n//callback signature\nfunction callback(curElement, currentIndex, array) {\n    //Implemented by the caller of forEach\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeveloper3027%2Fwebdevelopernotes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeveloper3027%2Fwebdevelopernotes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeveloper3027%2Fwebdevelopernotes/lists"}