How to use 'javascript history list' in JavaScript

Every line of 'javascript history list' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
45function do_history(args)
46{
47 var h = ""
48 for (var i in history_list) {
49 h += "<div>" + i + "  " + history_list[i] + "</div>";
50 }
51 return h;
52}
62addHistory(): void {
63 this.history.unshift({
64 og: null,
65 fg: null,
66 gallons: null,
67 ingredients: '',
68 notes: '',
69 recipe_name: '',
70 recipe_id: null,
71 brew_date: new Date(),
72 id: null
73 });
74 this.isCollapsed.unshift(true);
75 this.isEdit.unshift(true);
76}

Related snippets