You have to search in the array like:
function changeDesc( value, desc ) { for (var i in projects) { if (projects[i].value == value) { projects[i].desc = desc; break; //Stop this loop, we found it! } } }
and use it like
var projects = [ ... ]; changeDesc ( 'jquery-ui', 'new description' );
UPDATE:
To get it faster:
var projects = { jqueryUi : { value: 'lol1', desc: 'lol2' } }; projects.jqueryUi.desc = 'new string';
(In according to Frédéric’s comment you shouldn’t use hyphen in the object key, or you should use “jquery-ui” and projects[“jquery-ui”] notation.)
Related Posts:
- How to filter an array/object by checking multiple values
- How to find the sum of an array of numbers
- How to add an object to an array
- Uncaught TypeError: Cannot read property ‘toUpperCase’ of undefined
- Convert array to JSON
- Complex JSON nesting of objects and arrays
- For-each over an array in JavaScript
- How do I redirect to another webpage?
- jQuery append() vs appendChild()
- ReferenceError: $ is not defined
- Cannot read property ‘push’ of undefined when combining arrays
- How can I remove a specific item from an array?
- How to deal with net::ERR_SSL_PROTOCOL_ERROR?
- What is the way of declaring an array in JavaScript?
- jQuery.click() vs onClick
- Scroll to an element with jQuery
- Download File Using JavaScript/jQuery
- Remove duplicate values from JS array [duplicate]
- How to loop through an array containing objects and access their properties
- Remove duplicate values from JS array
- Check if checkbox is checked with jQuery
- Getting Error “Form submission canceled because the form is not connected”
- How to check if array is empty or does not exist?
- Change Background color (css property) using Jquery
- jQuery get textarea text
- How can jQuery deferred be used?
- Uncaught TypeError : cannot read property ‘replace’ of undefined In Grid
- Failed to load resource: net::ERR_FILE_NOT_FOUND loading json.js
- Disable/enable an input with jQuery?
- Get class name using jQuery
- What does on() in JavaScript do?
- jQuery animate backgroundColor
- Use images like checkboxes
- Left() function in Javascript or jQuery
- JavaScript error (Uncaught SyntaxError: Unexpected end of input)
- How to print elements from array with javascript
- Short circuit Array.forEach like calling break
- ChangeDate – Date Picker Bootstrap
- Uncaught TypeError: Cannot read property ‘msie’ of undefined
- How to hide a div with jQuery?v
- How do I set/unset a cookie with jQuery?
- How to convert selected HTML to Json?
- How to Open New window on every Click
- Jquery Ajax Call, doesn’t call Success or Error
- How to loop through an array containing objects and access their properties
- How to create a stopwatch using JavaScript?
- Failed to load resource: net::ERR_CONTENT_LENGTH_MISMATCH
- With jQuery, how do I capitalize the first letter of a text field while the user is still editing that field?
- Convert Array to Object
- How to update array value javascript?
- Counting the occurrences / frequency of array elements
- TypeError: $(…).DataTable is not a function
- jQuery explode string like PHP
- Get all non-unique values (i.e.: duplicate/more than one occurrence) in an array
- Validate date in dd/mm/yyyy format using JQuery Validate
- Javascript/Jquery Convert string to array
- Simulate Keypress With jQuery
- Adding options to a
- jQuery Ajax POST example with PHP
- Checking for duplicate strings in JavaScript array
- How to get current date in jQuery?
- Print the contents of a DIV
- How to Scroll Down – JQuery
- Embedding instagram webpage inside an iframe
- Do something if screen width is less than 960 px
- jQuery remove options from select
- Load Image from javascript
- Most efficient method to groupby on an array of objects
- is there something like isset of php in javascript/jQuery?
- jQuery – Dynamically Create Button and Attach Event Handler
- Highlight a word with jQuery
- “Uncaught TypeError: a.indexOf is not a function” error when opening new foundation project
- Error: TypeError: $(…).dialog is not a function
- getContext is not a function
- How to change the text of a label?
- How to check ‘undefined’ value in jQuery
- Data column(s) for axis #0 cannot be of type string in google chart dashboard [duplicate]
- navigator.geolocation.getCurrentPosition sometimes works sometimes doesn’t
- Jquery Value match Regex
- Using “×” word in html changes to ×
- How do I store an array in localStorage?
- How to check if the URL contains a given string?
- How should I initialize jQuery?
- How to reload page every 5 seconds?
- Fire oninput event with jQuery
- Changing the selected option of an HTML Select element
- How to scroll to top of page with JavaScript/jQuery?
- How to set “style=display:none;” using jQuery’s attr method?
- Change the selected value of a drop-down list with jQuery
- How to dequeue a script?
- List of JS Events for Widgets?
- JQuery not loading
- Uncaught ReferenceError: jQuery is not defined – although jQuery is loaded [closed]
- Uncaught TypeError: jQuery(…).slider is not a function
- Putting custom html/js page into Elementor as it’s own block
- How to load Javascript code or functions.php later in a child theme?
- “jQuery Not Defined” Error When Connecting to PayPal
- Fade-in Fade-out doesn’t work in WordPress
- Open image gallery on link click
- Uncaught ReferenceError: tippy is not defined